This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch java-10-test in repository https://gitbox.apache.org/repos/asf/camel.git
commit 3677ecf3f9734fe4090192427528c729b627f4a9 Author: Zoran Regvart <zregv...@apache.org> AuthorDate: Wed Aug 22 14:38:04 2018 +0200 Temporary disable JDK 9 and karaf-itest and spr... ...ing-itest builds --- Jenkinsfile.daily | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily index 86051db..18a75d6 100644 --- a/Jenkinsfile.daily +++ b/Jenkinsfile.daily @@ -59,9 +59,9 @@ pipeline { } steps { dir("tests/camel-itest-karaf/") { - sh "./kill-karaf.sh" + sh "true || ./kill-karaf.sh" script { - karaf_itests_result = sh script: "./run-tests.sh", returnStatus: true + karaf_itests_result = sh script: "true || ./run-tests.sh", returnStatus: true } } } @@ -74,7 +74,7 @@ pipeline { steps { dir("tests/camel-itest-spring-boot/") { script { - spring_boot_itests_result = sh script: "../../mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true test", returnStatus: true + spring_boot_itests_result = sh script: "true || ../../mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true test", returnStatus: true } } } @@ -86,7 +86,7 @@ pipeline { } steps { script { - jdk9_result = sh script: "./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true test", returnStatus: true + jdk9_result = sh script: "true || ./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true test", returnStatus: true } } post {