Repository: maven Updated Branches: refs/heads/master 7365ae704 -> c9260ff50
hopefully the final Jenkinsfile fix Project: http://git-wip-us.apache.org/repos/asf/maven/repo Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/c9260ff5 Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/c9260ff5 Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/c9260ff5 Branch: refs/heads/master Commit: c9260ff50c2447e4357f40e58fc77b32a9a0c072 Parents: 7365ae7 Author: Stephen Connolly <[email protected]> Authored: Sun Jan 1 19:46:04 2017 +0000 Committer: Stephen Connolly <[email protected]> Committed: Sun Jan 1 19:46:04 2017 +0000 ---------------------------------------------------------------------- Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven/blob/c9260ff5/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 8660879..cc02671 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,5 +103,7 @@ parallel linuxJava7:{ } } } finally { -emailext body: '$DEFAULT_CONTENT', recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider'], [$class: 'FirstFailingBuildSuspectsRecipientProvider']], replyTo: '[email protected]', subject: '$DEFAULT_SUBJECT', to: '[email protected]' -} \ No newline at end of file + node('ubuntu') { + emailext body: '$DEFAULT_CONTENT', recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider'], [$class: 'FirstFailingBuildSuspectsRecipientProvider']], replyTo: '[email protected]', subject: '$DEFAULT_SUBJECT', to: '[email protected]' + } +}
