You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2018/06/29 14:40:26 UTC

[maven-jenkins-lib] branch master updated: Pass 'failfast'

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
     new bafbb4a  Pass 'failfast'
bafbb4a is described below

commit bafbb4ab4fb4303b58e811d380edc36b9689c688
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Jun 29 16:40:18 2018 +0200

    Pass 'failfast'
---
 vars/asfMavenTlpPlgnBuild.groovy | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/vars/asfMavenTlpPlgnBuild.groovy b/vars/asfMavenTlpPlgnBuild.groovy
index 5dff664..70789fa 100644
--- a/vars/asfMavenTlpPlgnBuild.groovy
+++ b/vars/asfMavenTlpPlgnBuild.groovy
@@ -43,11 +43,11 @@ def call(Map params = [:]) {
       for (def mvn in mavens) {
 	    def jdk = Math.max( jdkMin as Integer, jenkinsEnv.jdkForMaven( mvn ) as Integer) as String
 		jdks = jdks.findAll{ it != jdk }
-	    doCreateTask( os, jdk, mvn, tasks, first )
+	    doCreateTask( os, jdk, mvn, tasks, first, failFast )
       }
       for (def jdk in jdks) {
 	    def mvn = jenkinsEnv.mavenForJdk(jdk)
-	    doCreateTask( os, jdk, mvn, tasks, first )
+	    doCreateTask( os, jdk, mvn, tasks, first, failFast )
       }
     }
     // run the parallel builds
@@ -87,7 +87,7 @@ def call(Map params = [:]) {
   }
 }
 
-def doCreateTask( os, jdk, maven, tasks, first )
+def doCreateTask( os, jdk, maven, tasks, first, failFast )
 {
 	String label = jenkinsEnv.labelForOS(os);
 	String jdkName = jenkinsEnv.jdkFromVersion(os, "${jdk}")