Add build time to success email.

This commit is contained in:
Manuele Simi 2019-10-10 15:19:37 -04:00
parent f897c5ac3c
commit 9fb56fc246
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -207,13 +207,13 @@ pipeline {
success {
echo 'The pipeline worked!'
mail to: 'jenkinsbuilds@d4science.org',
subject: "gCube pipeline worked: ${currentBuild.fullDisplayName} worked1",
body: "See ${env.BUILD_URL}"
subject: "[Jenkins build D4S] build ${currentBuild.fullDisplayName} worked",
body: "Build time: ${currentBuild.durationString}. See ${env.BUILD_URL}"
}
failure {
echo 'The pipeline has failed'
mail to: 'jenkinsbuilds@d4science.org',
subject: "${currentBuild.fullDisplayName} has failed",
subject: "[Jenkins build D4S] build ${currentBuild.fullDisplayName} failed",
body: "Something is wrong with ${env.BUILD_URL}"
}