From 50396f50e7cd16bba26645193cce247b4dfefce1 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 8 May 2026 13:32:34 -0600 Subject: [PATCH] ceph-dev-pipeline: Correct compile-skipping We were erroneously skipping the container phase in some cases. Signed-off-by: Zack Cerza --- ceph-dev-pipeline/build/Jenkinsfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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) } } } } -- 2.47.3