From: Zack Cerza Date: Fri, 8 May 2026 19:32:34 +0000 (-0600) Subject: ceph-dev-pipeline: Correct compile-skipping X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2577%2Fhead;p=ceph-build.git ceph-dev-pipeline: Correct compile-skipping We were erroneously skipping the container phase in some cases. Signed-off-by: Zack Cerza --- diff --git a/ceph-dev-pipeline/build/Jenkinsfile b/ceph-dev-pipeline/build/Jenkinsfile index 7ac9abb40..db61bd4ba 100644 --- a/ceph-dev-pipeline/build/Jenkinsfile +++ b/ceph-dev-pipeline/build/Jenkinsfile @@ -183,10 +183,7 @@ pipeline { expression { env.FLAVORS.contains(env.FLAVOR) } anyOf { environment name: "CI_COMPILE", value: "true" - allOf { - environment name: "CI_CONTAINER", value: "true" - environment name: "DIST", value: "centos9" - } + expression { env.CI_CONTAINER == 'true' && container_distros.contains(env.DIST) } } } }