This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 07202c460b3 (chores) build (s390): skip archetype tests 07202c460b3 is described below commit 07202c460b357e5e83803b7f728febdda844e4e4 Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Tue Jan 24 17:43:16 2023 +0100 (chores) build (s390): skip archetype tests This applies the same behavior as done on other builds --- Jenkinsfile.s390x | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile.s390x b/Jenkinsfile.s390x index dee213c23fd..bbffc677df5 100644 --- a/Jenkinsfile.s390x +++ b/Jenkinsfile.s390x @@ -71,13 +71,13 @@ pipeline { } steps { // Skip modules camel-kudu and docs as these are not supported on s390x. - sh "./mvnw -U $MAVEN_PARAMS -Dmaven.test.skip.exec=true clean install -pl '!docs,!components/camel-kudu'" + sh "./mvnw -U $MAVEN_PARAMS -Darchetype.test.skip -Dmaven.test.skip.exec=true clean install -pl '!docs,!components/camel-kudu'" } } stage('Checks') { steps { - sh "./mvnw $MAVEN_PARAMS -Psourcecheck -Dcheckstyle.failOnViolation=false checkstyle:check" + sh "./mvnw $MAVEN_PARAMS -Darchetype.test.skip -Psourcecheck -Dcheckstyle.failOnViolation=false checkstyle:check" } }