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:43:38 UTC

[camel] branch master updated: Add a step in the Jenkins.daily pipeline to run Karaf itests

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 2ffe2e6  Add a step in the Jenkins.daily pipeline to run Karaf itests
2ffe2e6 is described below

commit 2ffe2e630c418684fc71238f886ce30f25fc8669
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Jul 20 13:43:00 2018 +0200

    Add a step in the Jenkins.daily pipeline to run Karaf itests
---
 Jenkinsfile.daily | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily
index f49f417..4a8756f 100644
--- a/Jenkinsfile.daily
+++ b/Jenkinsfile.daily
@@ -53,6 +53,18 @@ pipeline {
             }
         }
 
+        stage('karaf-itests') {
+            tools {
+                jdk BUILD_JDK_NAME
+            }
+            steps {
+                dir("tests/camel-itest-karaf/") {
+                    sh "./kill-karaf.sh"
+                    sh "./run-tests.sh"
+                }
+            }
+        }
+
         stage('Test JDK 9') {
             tools {
                 jdk 'JDK 1.9 (latest)'