我正在努力使此功能正常工作
在我的多分支管道项目中,我应用了锁,但仍及时建立了两个分支。任何解决方案在这里? 我们的想法是及时建立一个分支。
// Build the branch
stage('Build the branch') {
steps {
echo '*** BUILD PHASE ***'
lock(resource: null, label: 'Build phase') {
script {
for (String profile : profiles) {
echo "Build with profile: ${profile}"
def buildOutput = buildCountry(profile)
}
}
}
}
}