Add recipient.

This commit is contained in:
Manuele Simi 2021-01-31 23:36:01 -05:00
parent 0942dfc7fb
commit 04ae09d591
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -103,14 +103,14 @@ pipeline {
echo 'The actions pipeline worked!'
emailext attachmentsPattern: "**/action*${env.BUILD_NUMBER}.*",
to: 'manuele.simi@isti.cnr.it',
to: 'manuele.simi@isti.cnr.it,roberto.cirillo@isti.cnr.it',
subject: "Actions report(build #${PIPELINE_BUILD_NUMBER})",
body: "${currentBuild.fullDisplayName}. Build time: ${currentBuild.durationString}. See ${env.BUILD_URL}"
}
failure {
echo 'The actions pipeline has failed'
emailext attachLog: true,
to: 'manuele.simi@isti.cnr.it',
to: 'manuele.simi@isti.cnr.it,roberto.cirillo@isti.cnr.it',
subject: "[Jenkins build D4S] build ${currentBuild.fullDisplayName} failed",
body: "Something is wrong with ${env.BUILD_URL}"
}