]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
node fix
authorZack Cerza <zack@cerza.org>
Mon, 3 Nov 2025 21:58:56 +0000 (14:58 -0700)
committerZack Cerza <zack@cerza.org>
Mon, 3 Nov 2025 21:59:35 +0000 (14:59 -0700)
ceph-dev-pipeline/build/Jenkinsfile

index e90e5d13634153cb9f3222c97145bedfd98944f1..0535c7d3c564afafda8ad8f311c3a418008d6815 100644 (file)
@@ -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,
+                      ]);
+                    }
                   }
                 }
               }