Update Jenkinsfile

This commit is contained in:
Jessica Allaire 2020-03-30 19:22:54 -04:00 committed by GitHub
parent e22e419495
commit babbe25b67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -6,7 +6,6 @@ pipeline {
bat './mvnw package' bat './mvnw package'
} }
} }
stage('Test') { stage('Test') {
steps { steps {
echo 'Testing' echo 'Testing'
@ -24,15 +23,14 @@ pipeline {
expression { expression {
GIT_BRANCH == 'master' GIT_BRANCH == 'master'
} }
} }
steps { steps {
echo 'Deploy' echo 'Deploy'
} }
} }
}
post { post {
always { always {
slackSend "The pipeline ${currentBuild.fullDisplayName} completed successfully." slackSend "The pipeline ${currentBuild.fullDisplayName} completed successfully."
} }
} }
}