Added Jenkinsfile

This commit is contained in:
Jessica Allaire 2020-03-30 19:34:48 -04:00
parent 3af3097b15
commit b74c83ee02

10
Jenkinsfile vendored
View file

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