You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/01/22 22:01:22 UTC

[maven-surefire] 01/01: investigate all platforms without maven run

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

tibordigana pushed a commit to branch jenkins-error
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit b7383049b710c916cdf62397ebe39c25f4bcc3db
Author: tibordigana <ti...@apache.org>
AuthorDate: Tue Jan 22 23:01:16 2019 +0100

    investigate all platforms without maven run
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 6d2016f..7f69152 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -31,7 +31,7 @@ properties(
 )
 
 final def oses = ['linux':'ubuntu && !H24', 'windows':'Windows']
-final def mavens = env.BRANCH_NAME == 'master' ? ['3.6.x', '3.5.x', '3.3.x', '3.2.x'] : ['3.6.x']
+final def mavens = ['3.6.x', '3.5.x', '3.3.x', '3.2.x']
 // all non-EOL versions and the first EA
 final def jdks = [12, 11, 8, 7]
 
@@ -158,7 +158,7 @@ def buildProcess(String stageKey, String jdkName, String jdkTestName, String mvn
                 ]) {
                     bat 'echo JAVA_HOME=%JAVA_HOME%, JAVA_HOME_IT=%JAVA_HOME_IT%, PATH=%PATH%'
                     def script = cmd + ['\"-Djdk.home=%JAVA_HOME_IT%\"']
-                    def error = bat(returnStatus: true, script: script.join(' '))
+                    def error = 0//bat(returnStatus: true, script: script.join(' '))
                     currentBuild.result = error == 0 ? 'SUCCESS' : 'FAILURE'
                 }
             }