Jenkins file notification email title improvement

This commit is contained in:
Hervé Boutemy 2017-01-23 23:11:22 +01:00
parent 94bc4de2ea
commit 21d1bfb5a0
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -131,7 +131,7 @@ parallel linuxJava7:{
} }
} finally { } finally {
node('ubuntu') { node('ubuntu') {
emailext body: "See ${env.BUILD_URL}", recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider'], [$class: 'FirstFailingBuildSuspectsRecipientProvider']], replyTo: 'dev@maven.apache.org', subject: "Maven Jenkinsfile finished with ${currentBuild.result}", to: 'notifications@maven.apache.org' emailext body: "See ${env.BUILD_URL}", recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider'], [$class: 'FirstFailingBuildSuspectsRecipientProvider']], replyTo: 'dev@maven.apache.org', subject: "${env.JOB_NAME} - build ${env.BUILD_DISPLAY_NAME} - ${currentBuild.result}", to: 'notifications@maven.apache.org'
} }
} }