Jenkins声明式管道-多分支运行一一构建

时间:2018-10-03 11:34:40

标签: jenkins jenkins-pipeline multibranch-pipeline

我正在努力使此功能正常工作

在我的多分支管道项目中,我应用了锁,但仍及时建立了两个分支。任何解决方案在这里? 我们的想法是及时建立一个分支。

// 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)
                    }
                }
            }
        }
    }

0 个答案:

没有答案