如何在结帐前在单个分支Jenkins管道中获取分支名称?

时间:2019-06-13 08:31:15

标签: git jenkins jenkins-pipeline

我想分配一个新的工作空间,并在工作空间名称中包含分支名称。 如果在单个分支管道上BRANCH_NAMEnull怎么办?

有什么解决方法吗?

ws("FOO_${BRANCH}") // I want to somehow use branch name here
{
    stage("Git Checkout")
    {
        def bar = checkout scm
        // I know I can get the branch name like shown below,
        // but I need the branch name when allocating workspace.
        println bar.GIT_BRANCH
    }
}

0 个答案:

没有答案