Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

groovy - Access Jenkins pipeline definition within Jenkinsfile

For a project I would like to know which branch is used to check out the pipeline script that is used. In this case I would get back that the branch is */develop

Job Definition example

Solved by using this:

String url = 'curl --user  '  + "${JENKINS_USER}:${JENKINS_PASS}" + ' https://jenkinsurl/job/'+ env.JOB_NAME + '/config.xml'
    
String CICD_BRANCH = new XmlSlurper().parseText(url.execute().text).definition.scm.branches."hudson.plugins.git.BranchSpec".getProperty("name").toString().substring(2);
        
env.CICDBRANCH = CICD_BRANCH.toString()
question from:https://stackoverflow.com/questions/65829369/access-jenkins-pipeline-definition-within-jenkinsfile

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

To get the current branch name in your pipline script you can use the below code.

echo "My branch is: ${scm.branches[0]}"
node('build_node') {

}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...