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 2019/02/18 09:55:35 UTC

[camel] branch master updated: Re-add deploy stage to 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 ced17dc  Re-add deploy stage to Pipeline
ced17dc is described below

commit ced17dc63adc0793bc7000198f59c133ebdb04fa
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 18 10:54:53 2019 +0100

    Re-add deploy stage to Pipeline
---
 Jenkinsfile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index ab00845..130127e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -42,6 +42,15 @@ pipeline {
 
     stages {
 
+        stage('Build & Deploy') {
+            when {
+                branch 'master'
+            }
+            steps {
+                sh "./mvnw $MAVEN_PARAMS -Dmaven.test.skip.exec=true clean deploy"
+            }
+        }
+
         stage('Checks') {
             steps {
                 sh "./mvnw $MAVEN_PARAMS -Psourcecheck -Dcheckstyle.failOnViolation=false checkstyle:check"