From: madavi Date: Tue, 25 Jun 2019 12:16:24 +0000 (+0530) Subject: Bug 699 email notification X-Git-Tag: v7.0.0rc1~104 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=706fe53cc16f91319c16f2c7a3136d1b0d3aa2b6;p=osm%2Fdevops.git Bug 699 email notification Change-Id: I6c37bf3200db450579cf08194f9cb3b6e7b76041 Signed-off-by: madavi --- diff --git a/jenkins/ci-pipelines/ci_stage_1.groovy b/jenkins/ci-pipelines/ci_stage_1.groovy index d74de591..2602e8f6 100644 --- a/jenkins/ci-pipelines/ci_stage_1.groovy +++ b/jenkins/ci-pipelines/ci_stage_1.groovy @@ -15,6 +15,7 @@ * under the License. */ +stage_3_merge_result = '' def Get_MDG(project) { // split the project. def values = project.split('/') @@ -87,12 +88,20 @@ node("${params.NODE}") { downstream_job_name = "${mdg}-${stage_name}/${GERRIT_BRANCH}" println("TEST_INSTALL = ${params.TEST_INSTALL}, downstream job: ${downstream_job_name}") - - stage_2_result = build job: "${downstream_job_name}", parameters: downstream_params, propagate: true - if (stage_2_result.getResult() != 'SUCCESS') { - project = stage_2_result.getProjectName() - build = stage_2_result.getNumber() + + // Jayant : once email is successful, enable the email only on failure + stage_3_merge_result = build job: "${downstream_job_name}", parameters: downstream_params, propagate: true + if (stage_3_merge_result.getResult() != 'SUCCESS') { + project = stage_3_merge_result.getProjectName() + build = stage_3_merge_result.getNumber() error("${project} build ${build} failed") } } + stage('Send Email') { + emailext ( + subject: "[OSM-Jenkins] ${stage_3_merge_result.getResult()} Job '${env.JOB_NAME} ${env.BUILD_NUMBER}'", + body: """

Check console output at ${env.JOB_NAME}

""", + to: 'JM00553988@techmahindra.com' + ) + } }