This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch test-jenkinsfile in repository https://gitbox.apache.org/repos/asf/camel.git
commit 5e32e07b88536712ec67861cfc289a40c7ee703c Author: Zoran Regvart <[email protected]> AuthorDate: Tue Mar 20 11:58:49 2018 +0100 CAMEL-11930: rework deployment to ASF repository (3) Let's try adding separate deploy stage. --- Jenkinsfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e9ee8c1..463ab5b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -40,7 +40,13 @@ pipeline { stage('Build') { steps { - sh "./mvnw $MAVEN_PARAMS -Dnoassembly -Dmaven.test.skip.exec=true -DdeployAtEnd=true clean install deploy:deploy" + sh "./mvnw $MAVEN_PARAMS -Dnoassembly -Dmaven.test.skip.exec=true clean install" + } + } + + stage('Deploy') { + steps { + sh "./mvnw $MAVEN_PARAMS -Pfastinstall -Dmaven.test.skip.exec=true deploy" } } -- To stop receiving notification emails like this one, please contact [email protected].
