This is an automated email from the ASF dual-hosted git repository.
davsclaus 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 d275e3a56264 CAMEL-24318: use Maven parallelization for Jbang IT
compilation on Jenkins
d275e3a56264 is described below
commit d275e3a56264b87ec5b42c3bfe27bc67cd0accc7
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.
Closes #25272
---
Jenkinsfile.jbangtest | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile.jbangtest b/Jenkinsfile.jbangtest
index 73a5f81f43c9..263bf228e2a9 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 -f
test-infra/camel-test-infra-cli/pom.xml -Pjbang-it-test"
sh "./mvnw $MAVEN_PARAMS -f
dsl/camel-jbang/camel-jbang-it/pom.xml -Pjbang-it-test"
}