This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch camel-4.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.18.x by this push:
new 2e8dec1c6e24 CAMEL-24318: use Maven parallelization for Jbang IT
compilation on Jenkins
2e8dec1c6e24 is described below
commit 2e8dec1c6e24e9f792a4f1124dc9d5420c189f2e
Author: Aurélien Pupier <[email protected]>
AuthorDate: Mon Aug 3 10:51:53 2026 +0200
CAMEL-24318: use Maven parallelization for Jbang IT compilation on
Jenkins
Add -T1C flag to the compilation-only step in the JBang IT test
Jenkinsfile, reducing compilation time from 1h32min to 37min. The
parallelization is scoped to the -Dquickly build step only, leaving
actual IT test invocations sequential to avoid interference.
Signed-off-by: Aurélien Pupier <[email protected]>
---
Jenkinsfile.jbangtest | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile.jbangtest b/Jenkinsfile.jbangtest
index b8ab56eb055c..fb6ea170233d 100644
--- a/Jenkinsfile.jbangtest
+++ b/Jenkinsfile.jbangtest
@@ -62,7 +62,7 @@ pipeline {
}
}
steps {
- sh "./mvnw $MAVEN_PARAMS -Pdeploy,apache-snapshots -Dquickly
clean install"
+ sh "./mvnw $MAVEN_PARAMS -T1C -Pdeploy,apache-snapshots
-Dquickly clean install"
sh "./mvnw $MAVEN_PARAMS -Denforcer.skip=true -f
test-infra/camel-test-infra-cli/pom.xml -Pjbang-it-test"
sh "./mvnw $MAVEN_PARAMS -Denforcer.skip=true -f
dsl/camel-jbang/camel-jbang-it/pom.xml -Pjbang-it-test"
}