You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/06/07 10:54:31 UTC

[camel-k-runtime] 02/02: Fix Jenkinsfile

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit 41a1a33e4216bb489084f650d12ef37ed7efa08f
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Wed Jun 5 17:35:18 2019 +0200

    Fix Jenkinsfile
---
 Jenkinsfile | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 1c57e46..02a8244 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -41,16 +41,9 @@ pipeline {
     }
 
     stages {
-
-        stage('Test Vs Camel 2.x & Install') {
-            steps {
-                sh "./mvnw $MAVEN_PARAMS clean install -Dcamel2 -f pom.xml"
-            }
-        }
-
-        stage('Test Vs Camel 3.x & Install') {
+        stage('Test & Install') {
             steps {
-                sh "./mvnw $MAVEN_PARAMS clean install -Dcamel3 -f pom.xml"
+                sh "./mvnw $MAVEN_PARAMS clean install -f pom.xml"
             }
         }