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:07:11 UTC

[maven-surefire] branch jenkins-error updated: investigate only Linux

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


The following commit(s) were added to refs/heads/jenkins-error by this push:
     new dbfd218  investigate only Linux
dbfd218 is described below

commit dbfd218d98d70292a3c89a30346516790121db20
Author: tibordigana <ti...@apache.org>
AuthorDate: Tue Jan 22 23:07:06 2019 +0100

    investigate only Linux
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index ff9a9d9..7f69152 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -147,7 +147,7 @@ def buildProcess(String stageKey, String jdkName, String jdkTestName, String mvn
                 ]) {
                     sh 'echo JAVA_HOME=$JAVA_HOME, JAVA_HOME_IT=$JAVA_HOME_IT, PATH=$PATH'
                     def script = cmd + ['\"-Djdk.home=$JAVA_HOME_IT\"']
-                    def error = 0//sh(returnStatus: true, script: script.join(' '))
+                    def error = sh(returnStatus: true, script: script.join(' '))
                     currentBuild.result = error == 0 ? 'SUCCESS' : 'FAILURE'
                 }
             } else {