fixed build number in slack messages

This commit is contained in:
Grant Limberg 2016-10-25 14:37:19 -07:00
parent 6cb23e7069
commit 5c476391da

4
Jenkinsfile vendored
View File

@ -1,6 +1,6 @@
#!/usr/bin/env groovy
slackSend "Building ${env.JOB_NAME}/${env.BRANCH_NAME} #${env.BUILD_NUM}"
slackSend "Building ${env.JOB_NAME}/${env.BRANCH_NAME} #${env.BUILD_NUMBER}"
parallel 'centos7': {
node('centos7') {
try {
@ -55,4 +55,4 @@ parallel 'centos7': {
}
}
slackSend "${env.JOB_NAME}/${env.BRANCH_NAME} #${env.BUILD_NUM} Complete (<${env.BUILD_URL}|Show More...>)"
slackSend "${env.JOB_NAME}/${env.BRANCH_NAME} #${env.BUILD_NUMBER} Complete (<${env.BUILD_URL}|Show More...>)"