This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch jenkins-pipeline in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/jenkins-pipeline by this push: new df85b9a CAMEL-11930: incremental build experiment df85b9a is described below commit df85b9a144e9a192fad3b2a43618b304b475096c Author: Zoran Regvart <zregv...@apache.org> AuthorDate: Mon Feb 19 11:21:02 2018 +0100 CAMEL-11930: incremental build experiment Forgot to pass `-b` option to Maven. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5a61c0e..13979e0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -53,13 +53,13 @@ pipeline { stage('Build') { steps { - sh "./mvnw $MAVEN_PARAMS -Dnoassembly -Dmaven.test.skip.exec=true -Dmaven.install.skip=true incremental clean install" + sh "./mvnw $MAVEN_PARAMS -Dnoassembly -Dmaven.test.skip.exec=true -Dmaven.install.skip=true -b incremental clean install" } } stage('Test') { steps { - sh "./mvnw $MAVEN_PARAMS -Pintegration -Dnoassembly -Dmaven.test.failure.ignore=true incremental test" + sh "./mvnw $MAVEN_PARAMS -Pintegration -Dnoassembly -Dmaven.test.failure.ignore=true -b incremental test" } post { always { -- To stop receiving notification emails like this one, please contact zregv...@apache.org.