diff --git a/pipelines/build/common/openjdk_build_pipeline.groovy b/pipelines/build/common/openjdk_build_pipeline.groovy index 1b5445c3c..eac57ac68 100644 --- a/pipelines/build/common/openjdk_build_pipeline.groovy +++ b/pipelines/build/common/openjdk_build_pipeline.groovy @@ -1724,6 +1724,11 @@ class Build { String helperRef = buildConfig.HELPER_REF ?: DEFAULTS_JSON['repository']['helper_ref'] def NodeHelper = context.library(identifier: "openjdk-jenkins-helper@${helperRef}").NodeHelper + // If label contains mac skip waiting for node to become active as we use Orka + if (label.contains('mac')) { + return + } + // A node with the requested label is ready to go if (NodeHelper.nodeIsOnline(label)) { return