You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2018/07/20 11:52:56 UTC

[camel] branch master updated: Add a bit of feedback about Karaf itests in pipeline

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

acosentino 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 625f5b4  Add a bit of feedback about Karaf itests in pipeline
625f5b4 is described below

commit 625f5b474b83f76f8d068620caa08d39d1b5230a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Jul 20 13:52:30 2018 +0200

    Add a bit of feedback about Karaf itests in pipeline
---
 Jenkinsfile.daily | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily
index 4a8756f..7fcde8f 100644
--- a/Jenkinsfile.daily
+++ b/Jenkinsfile.daily
@@ -60,7 +60,7 @@ pipeline {
             steps {
                 dir("tests/camel-itest-karaf/") {
                     sh "./kill-karaf.sh"
-                    sh "./run-tests.sh"
+                    karaf_itests_result = sh script: "./run-tests.sh", returnStatus: true
                 }
             }
         }
@@ -124,6 +124,7 @@ pipeline {
     post {
         always {
             script {
+                echo "Karaf Itests result is ${karaf_itests_result}"
                 currentBuild.result = jdk9_result == 0 && jdk10_result == 0 && jdk11_result == 0 ? 'SUCCESS' : 'FAILURE'
             }
         }