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

16
Jenkinsfile vendored
View file

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