From 634185e02ae340ed1b7872d871e8251a69eb9344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Pupier?= Date: Thu, 30 Jul 2026 23:14:28 +0200 Subject: [PATCH] CAMEL-24318 - Use Maven parallelization for deploy on Jenkins MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * locally with local repo (take care to deactivate local build cache): * 8'32" ( ./mvnw -T1C -U -B -e -fae -V -Dnoassembly -Pdeploy,apache-snapshots -Dquickly clean deploy -DaltDeploymentRepository=your_repo_id::default::file:/tmp/alt-repo-2 ) * 18'33" (./mvnw -U -B -e -fae -V -Dnoassembly -Pdeploy,apache-snapshots -Dquickly clean deploy -DaltDeploymentRepository=your_repo_id::default::file:/tmp/alt-repo-2) * on jenkins for Camel core: * 25min instead of usually 3 hours, previous record was 2h35 , see https://ci-builds.apache.org/job/Camel/job/Camel%20Daily%20Snapshot%20Deploy/job/main/1494/ Signed-off-by: Aurélien Pupier --- Jenkinsfile.deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile.deploy b/Jenkinsfile.deploy index 1ddc271881021..83fa02bc83885 100644 --- a/Jenkinsfile.deploy +++ b/Jenkinsfile.deploy @@ -17,7 +17,7 @@ def AGENT_LABEL = env.AGENT_LABEL ?: 'ubuntu' def JDK_NAME = env.JDK_NAME ?: 'jdk_25_latest' -def MAVEN_PARAMS = "-U -B -e -fae -V -Dnoassembly " +def MAVEN_PARAMS = "-U -B -e -fae -V -Dnoassembly -T1C " pipeline {