Update Jenkinsfile

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

4
Jenkinsfile vendored
View file

@ -1,9 +1,10 @@
pipeline { pipeline {
agent any agent any
slackSend "Build Started - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
slackSend "Build Started - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
sh './mvnw clean' sh './mvnw clean'
} }
} }
@ -26,5 +27,4 @@ pipeline {
} }
} }
} }
slackSend "Build Success- ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
} }