You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by st...@apache.org on 2017/01/01 19:46:09 UTC

maven git commit: hopefully the final Jenkinsfile fix

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 <st...@gmail.com>
Authored: Sun Jan 1 19:46:04 2017 +0000
Committer: Stephen Connolly <st...@gmail.com>
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: 'dev@maven.apache.org', subject: '$DEFAULT_SUBJECT', to: 'notifications@maven.apache.org'
-}
\ No newline at end of file
+    node('ubuntu') {
+        emailext body: '$DEFAULT_CONTENT', recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider'], [$class: 'FirstFailingBuildSuspectsRecipientProvider']], replyTo: 'dev@maven.apache.org', subject: '$DEFAULT_SUBJECT', to: 'notifications@maven.apache.org'
+    }
+}