Merge branch 'mkirk/ci-label-branches'

pull/1/head
Michael Kirk 6 years ago
commit 145a94cf39

6
Jenkinsfile vendored

@ -11,6 +11,12 @@ pipeline {
stages {
stage('env setup') {
steps {
script {
// CHANGE_ID is set only for pull requests, so it is safe to access the pullRequest global variable
if (env.CHANGE_ID) {
currentBuild.displayName = "PR #${pullRequest.number}: ${pullRequest.title}"
}
}
sh 'make setup'
}
}

Loading…
Cancel
Save