From 411a6345df4e75ad6a84f0fee3729fd9a954330b Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 3 Nov 2025 14:58:56 -0700 Subject: [PATCH] node fix --- ceph-dev-pipeline/build/Jenkinsfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/ceph-dev-pipeline/build/Jenkinsfile b/ceph-dev-pipeline/build/Jenkinsfile index e90e5d13..0535c7d3 100644 --- a/ceph-dev-pipeline/build/Jenkinsfile +++ b/ceph-dev-pipeline/build/Jenkinsfile @@ -53,10 +53,13 @@ pipeline { if ( crimsonFlavors.contains(FLAVOR) && (DIST != 'centos9' || ARCH != 'x86_64') ) continue; if ( env.CI_COMPILE == true || (env.CI_CONTAINER == "true" && containerDists.contains(DIST)) ) { parallelBuilds["${DIST} ${ARCH} ${FLAVOR}"] = { - node { label "(installed-os-centos9||installed-os-noble)&&${ARCH}&&${base_node_label}" } - buildImpl.do_build([ - env: env, - ]); + node { + label "(installed-os-centos9||installed-os-noble)&&${ARCH}&&${base_node_label}" + buildImpl = load 'ceph-dev-pipeline/build/build.groovy' + buildImpl.do_build([ + env: env, + ]); + } } } } -- 2.39.5