From 57b685829b9fe12af179ec3b7e3498871657ebc8 Mon Sep 17 00:00:00 2001 From: Rodrigo Antunes Date: Thu, 23 May 2024 08:20:56 -0300 Subject: [PATCH 1/2] Make the weekly Jenkins job build all images --- .ci/jenkins/dsl/jobs.groovy | 3 --- 1 file changed, 3 deletions(-) diff --git a/.ci/jenkins/dsl/jobs.groovy b/.ci/jenkins/dsl/jobs.groovy index baf84e3c9..b890d949e 100644 --- a/.ci/jenkins/dsl/jobs.groovy +++ b/.ci/jenkins/dsl/jobs.groovy @@ -348,9 +348,6 @@ void setupWeeklyDeployJob(JobType jobType) { QUARKUS_PLATFORM_NEXUS_URL: Utils.getMavenQuarkusPlatformRepositoryUrl(this), ]) - // Temporary removal of sonataflow-* images that have been moved to kie-tools for the Apache 10 release - jobParams.env.put('IMAGES_LIST', 'kogito-base-builder') - KogitoJobTemplate.createPipelineJob(this, jobParams)?.with { parameters { stringParam('DISPLAY_NAME', '', 'Setup a specific build display name') From 48857ed61391d80160205c7f1c5c6971d6909346 Mon Sep 17 00:00:00 2001 From: Rodrigo Antunes Date: Thu, 23 May 2024 11:06:53 -0300 Subject: [PATCH 2/2] Add cloud images binding --- .ci/jenkins/dsl/jobs.groovy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci/jenkins/dsl/jobs.groovy b/.ci/jenkins/dsl/jobs.groovy index b890d949e..eb7535ff9 100644 --- a/.ci/jenkins/dsl/jobs.groovy +++ b/.ci/jenkins/dsl/jobs.groovy @@ -347,7 +347,9 @@ void setupWeeklyDeployJob(JobType jobType) { QUARKUS_PLATFORM_NEXUS_URL: Utils.getMavenQuarkusPlatformRepositoryUrl(this), ]) - + if (Utils.hasBindingValue(this, 'CLOUD_IMAGES')) { + jobParams.env.put('IMAGES_LIST', Utils.getBindingValue(this, 'CLOUD_IMAGES')) + } KogitoJobTemplate.createPipelineJob(this, jobParams)?.with { parameters { stringParam('DISPLAY_NAME', '', 'Setup a specific build display name')