Update Jenkinsfile

This commit is contained in:
Édouard Gagné 2020-04-13 21:10:32 -04:00 committed by GitHub
parent f42a949e20
commit a8ab0f6e3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
Jenkinsfile vendored
View file

@ -1,5 +1,6 @@
pipeline {
agent any
slackSend "Build Started - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
stages {
stage('Build') {
steps {
@ -25,4 +26,5 @@ pipeline {
}
}
}
slackSend "Build Success- ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
}