Add recipient.

This commit is contained in:
Manuele Simi 2021-02-06 16:33:17 -05:00
parent 6d836e2e90
commit 8d17d0d965
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -105,14 +105,14 @@ pipeline {
echo 'The actions pipeline worked!'
emailext attachmentsPattern: "**/action*${env.BUILD_NUMBER}.*",
to: 'manuele.simi@isti.cnr.it,roberto.cirillo@isti.cnr.it',
to: 'manuele.simi@isti.cnr.it,roberto.cirillo@isti.cnr.it,pasquale.pagano@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,roberto.cirillo@isti.cnr.it',
to: 'manuele.simi@isti.cnr.it,roberto.cirillo@isti.cnr.it,pasquale.pagano@isti.cnr.it',
subject: "[Jenkins build D4S] build ${currentBuild.fullDisplayName} failed",
body: "Something is wrong with ${env.BUILD_URL}"
}