Update Jenkinsfile

This commit is contained in:
Firassawan 2020-03-09 17:35:21 -04:00 committed by GitHub
parent 57a96e6fdf
commit 4ed910231a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
Jenkinsfile vendored
View file

@ -21,11 +21,12 @@ pipeline {
sh './mvnw package' sh './mvnw package'
} }
} }
} post { }
post {
failure { failure {
mail to: 'firassawan@icloud.com', mail to: 'firassawan@icloud.com',
subject: "Failed Pipeline: ${currentBuild.fullDisplayName}", subject: "Failed Pipeline: ${currentBuild.fullDisplayName}",
body: "Something is wrong with ${env.BUILD_URL}" body: "Something is wrong with ${env.BUILD_URL}"
}
} }
}
} }