Skip to content
Snippets Groups Projects
Commit 17b1ad5b authored by yadavmr's avatar yadavmr
Browse files

Bug 699 Email Notification


Change-Id: I0c7e24fe178a610dadda9ecba5b68c62eaaf86ad
Signed-off-by: default avataryadavmr <my00514913@techmahindra.com>
parent 0e4afd3e
Branches
Tags
No related merge requests found
......@@ -15,7 +15,7 @@
* under the License.
*/
stage_3_merge_result = ''
stage_merge_result = ''
def Get_MDG(project) {
// split the project.
def values = project.split('/')
......@@ -89,19 +89,23 @@ node("${params.NODE}") {
println("TEST_INSTALL = ${params.TEST_INSTALL}, downstream job: ${downstream_job_name}")
// 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()
stage_merge_result = build job: "${downstream_job_name}", parameters: downstream_params, propagate: true
if (stage_merge_result.getResult() != 'SUCCESS') {
project = stage_merge_result.getProjectName()
build = stage_merge_result.getNumber()
error("${project} build ${build} failed")
}
}
// Mrityunjay: TODO check if the message can be put as html, what more variables can be used.
stage('Send Email') {
if ((${env.JOB_NAME} == 'daily-stage_4')&& (stage_merge_result.getResult() != 'SUCCESS') {
emailext (
subject: "[OSM-Jenkins] ${stage_3_merge_result.getResult()} Job '${env.JOB_NAME} ${env.BUILD_NUMBER}'",
body: """<p>Check console output at <a href="${env.BUILD_URL}">${env.JOB_NAME}</a></p>""",
to: 'JM00553988@techmahindra.com'
subject: "[OSM-Jenkins] Job: ${env.JOB_NAME} Build: ${env.BUILD_NUMBER} Result: ${stage_merge_result.getResult()}",
body: """ Check console output at "${env.BUILD_URL}" """,
to: 'OSM_MDL@list.etsi.org',
recipientProviders: [culprits()]
)
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment