Add build time to success email.
This commit is contained in:
parent
f897c5ac3c
commit
9fb56fc246
|
@ -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}"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue