This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new a701634 Fix daily build to test `returnStatus` use a701634 is described below commit a70163433333d30aea9171ab8aa1d7230606c427 Author: Zoran Regvart <zregv...@apache.org> AuthorDate: Wed May 9 11:59:31 2018 +0200 Fix daily build to test `returnStatus` use --- Jenkinsfile.daily | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily index c631529..57f023e 100644 --- a/Jenkinsfile.daily +++ b/Jenkinsfile.daily @@ -56,7 +56,7 @@ pipeline { jdk 'JDK 1.9 (latest)' } steps { - sh script: "./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true test", returnStatus: 0 + sh script: "./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true test", returnStatus: true } post { always { @@ -72,7 +72,7 @@ pipeline { jdk 'JDK 10 (latest)' } steps { - sh script: "./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true test", returnStatus: 0 + sh script: "./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true test", returnStatus: true } post { always { -- To stop receiving notification emails like this one, please contact zregv...@apache.org.