我有一个Jenkins管道作业,配置为检出git仓库和特定的本地分支。
如何在Jenkins文件中获取本地分支的名称?
我尝试加载git jenkins plugin env属性,但没有运气。
node {
checkout scm
echo "1 "+ env.GIT_LOCAL_BRANCH
echo "2 "+ env.GIT_BRANCH
}
两个值均为“null”
答案 0 :(得分:11)
我发现我可以从checkout scm
捕获返回值并使用它来获取分支名称(以及其他值)
def scmVars
node('api-sample-build') {
stage('Clone source code') {
scmVars = checkout scm
// scmVars contains the following values
// GIT_BRANCH=origin/mybranch
// GIT_COMMIT=fc8279a107ebaf806f2e310fce15a7a54238eb71
// GIT_PREVIOUS_COMMIT=6f2e319a1fc82707ebaf800fce15a7a54238eb71
// GIT_PREVIOUS_SUCCESSFUL_COMMIT=310fce159a1fc82707ebaf806f2ea7a54238eb71
// GIT_URL=https://stash.someworkplace.com/scm/poc/api-sample.git
}
stage('test scope') {
echo scmVars.GIT_BRANCH
}
}
通过在节点外定义变量,它可以在结账后分阶段使用。
答案 1 :(得分:3)
我现在正在使用sh调用来获取分支名称。这至少需要2.4版本的Pipeline Nodes和Processes Plugin。
def branchName = sh(returnStdout: true, script: 'git rev-parse --abbrev-ref HEAD').trim()
echo branchName
答案 2 :(得分:0)
您可以使用scm
属性获取为scm
配置的分支列表:
// List of all configured branches
def allBranches = scm.branches
// Only the first configured branch name
def gitBranch = scm.branches[0].name