Update Jenkinsfile

This commit is contained in:
Firassawan 2020-03-09 17:23:04 -04:00 committed by GitHub
parent 66e73058e8
commit d855a08237
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
Jenkinsfile vendored
View file

@ -21,5 +21,12 @@ pipeline {
sh './mvnw package'
}
}
} post {
success {
mail to:"firassawan@icloud.com", subject:"SUCCESS: ${currentBuild.fullDisplayName}", body: "Yay, we passed."
}
failure {
mail to:"firassawan@icloud.com", subject:"FAILURE: ${currentBuild.fullDisplayName}", body: "Boo, we failed."
}
}
}