Update Jenkinsfile

change email address to jenkinsbuilds@d4science.org
This commit is contained in:
Roberto Cirillo 2024-11-28 12:25:26 +01:00
parent 545ec46752
commit 5e84d57f91
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -82,7 +82,7 @@ pipeline {
//URL to the YAML file. Used alternatively to RELEASE_JOB
RELEASE_URL= "${params.RELEASE_URL}"
// username of ReleaseManager. Used for limiting the preproduction deployments
RELEASE_MANAGER_USER='roberto.cirillo'
RELEASE_MANAGER_USER='giancarlo.panichi'
// name of Smartgears distribution group, defined in the yaml file ( only for release deployments)
DISTRIBUTION_CATEGORY='Distribution'
// name of Portlets group, defined in the yaml file ( only for release deployments)
@ -267,14 +267,14 @@ pipeline {
echo 'The deploy pipeline worked!'
emailext attachLog: true,//attachmentsPattern: "**/${ACTION_DEPLOY_FILE}.csv",
to: 'roberto.cirillo@isti.cnr.it',
to: 'jenkinsbuilds@d4science.org',
subject: "[Jenkins-gCubeDeployer] Deploy report",
body: "${currentBuild.fullDisplayName}. Build time: ${currentBuild.durationString}. See ${env.BUILD_URL}. "
}
failure {
echo 'The deploy pipeline has failed'
emailext attachLog: true,
to: 'roberto.cirillo@isti.cnr.it',
to: 'jenkinsbuilds@d4science.org',
subject: "[Jenkins-gCubeDeployer] deploy ${currentBuild.fullDisplayName} failed",
body: "Something is wrong with ${env.BUILD_URL}"
}