We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aebf9b6 commit e630d85Copy full SHA for e630d85
1 file changed
JenkinsJobs/AutomatedTests/smokeTests.jenkinsfile
@@ -64,13 +64,15 @@ pipeline {
64
}
65
66
post {
67
- unsuccessful {
68
- emailext subject: "Smoke test for ${buildId} - ${currentBuild.currentResult}",
69
- body: "Smoke tests failed for this build. Please review the logs at ${BUILD_URL} to identify the cause.",
70
- to: "platform-releng-dev@eclipse.org",
71
- from:"genie.releng@eclipse.org"
72
- }
73
-
+ unsuccessful {
+ emailext subject: "Smoke test for ${buildId} - ${currentBuild.currentResult}",
+ body: """\
+ Smoke tests failed for ${buildId}. Please review the logs:
+ ${BUILD_URL}
+ """.stripIndent(), mimeType: 'text/plain',
+ to: "${buildId.startsWith('Y') ? 'jdt-dev@eclipse.org' : 'platform-releng-dev@eclipse.org' }",
74
+ from:"genie.releng@eclipse.org"
75
+ }
76
77
78
0 commit comments