Repository: maven Updated Branches: refs/heads/MNG-3507 a8c6a8061 -> 5957c474f
test Jenkins file notification email improvement Project: http://git-wip-us.apache.org/repos/asf/maven/repo Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/5957c474 Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/5957c474 Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/5957c474 Branch: refs/heads/MNG-3507 Commit: 5957c474f054f2b4f698a8f7eb3ebdcd87574c39 Parents: a8c6a80 Author: Hervé Boutemy <hbout...@apache.org> Authored: Mon Jan 23 23:11:22 2017 +0100 Committer: Hervé Boutemy <hbout...@apache.org> Committed: Mon Jan 23 23:11:22 2017 +0100 ---------------------------------------------------------------------- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven/blob/5957c474/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 07ce2e6..5b82d78 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -131,7 +131,7 @@ parallel linuxJava7:{ } } finally { node('ubuntu') { - emailext body: "See ${env.BUILD_URL}", recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider'], [$class: 'FirstFailingBuildSuspectsRecipientProvider']], replyTo: 'd...@maven.apache.org', subject: "Maven Jenkinsfile finished with ${currentBuild.result}", to: 'notificati...@maven.apache.org' + emailext body: "See ${env.BUILD_URL}", recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider'], [$class: 'FirstFailingBuildSuspectsRecipientProvider']], replyTo: 'd...@maven.apache.org', subject: "${env.JOB_NAME} - build ${env.BUILD_DISPLAY_NAME} - ${currentBuild.result}", to: 'notificati...@maven.apache.org' } }