Skip to content

Commit

Permalink
Temporary removal of kogito-swf-{builder-,devmode} images from releas…
Browse files Browse the repository at this point in the history
…e pipelines
  • Loading branch information
rodrigonull committed Apr 4, 2024
1 parent b4cf1cb commit 47fbac9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .ci/jenkins/Jenkinsfile.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,10 @@ String[] getImages() {
if (env.IMAGES_LIST) {
return env.IMAGES_LIST.split(',')
}
return sh(returnStdout: true, script: "make list | tr '\\n' ','").trim().split(',')
String images = sh(returnStdout: true, script: "make list | tr '\\n' ','").trim()
// Temporary removal of kogito-swf-* images that have been moved to kie-tools for the Apache 10 release
images = images.replace("kogito-swf-builder,", "").replace("kogito-swf-devmode,", "")
return images.split(',')
}

String getQuarkusPlatformVersion() {
Expand Down
2 changes: 2 additions & 0 deletions .ci/jenkins/Jenkinsfile.promote
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,8 @@ String getNewImageTag() {

String[] getImages() {
String images = getOldImageNames() ?: env.IMAGES_LIST ?: runPythonCommand("make list | tr '\\n' ','", true).trim()
// Temporary removal of kogito-swf-* images that have been moved to kie-tools for the Apache 10 release
images = images.replace("kogito-swf-builder,", "").replace("kogito-swf-devmode,", "")
return images.split(',')
}

Expand Down

0 comments on commit 47fbac9

Please sign in to comment.