From 04ae09d5917ce2e58889044f7b398efa711b4b1b Mon Sep 17 00:00:00 2001 From: Manuele Simi Date: Sun, 31 Jan 2021 23:36:01 -0500 Subject: [PATCH] Add recipient. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9d78568..5658f6e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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}" }