Update Jenkinsfile

This commit is contained in:
Jack-Leung 2020-03-15 22:45:48 -04:00 committed by GitHub
parent 37ba1a9157
commit 0d48d1ed81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
Jenkinsfile vendored
View file

@ -1,6 +1,7 @@
pipeline {
agent any
stages {
slackSend "Build Started - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
stage('Build') {
steps {
sh './mvnw package'
@ -25,5 +26,4 @@ pipeline {
}
}
}
slackSend (message: "${buildStatus} ${env.JOB_NAME} ${env.BUILD_NUMBER} ${env.BUILD_URL}")
}