我想分配一个新的工作空间,并在工作空间名称中包含分支名称。
如果在单个分支管道上BRANCH_NAME
是null
怎么办?
有什么解决方法吗?
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
}
}