This is an automated email from the ASF dual-hosted git repository. fmariani pushed a commit to branch fix/ci-increase-build-timeout-4.18.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 95fbcf7c3fb5d83a173ef025bb9e204d27d32ac9 Author: Croway <[email protected]> AuthorDate: Wed Apr 1 15:26:49 2026 +0200 Increase CI build timeout from 450 to 600 minutes The matrix build cells are consistently timing out at 450 minutes (7h30m). With throttled matrix leg scheduling causing staggered starts, 600 minutes (10h) allows completion while still catching hung builds. Builds run 1-2x/day so this fits in the daily cycle. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b49f2bab0cc3..267aca4f430f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -135,7 +135,7 @@ pipeline { steps { echo "Do Build and test for ${PLATFORM}-${JDK_NAME}" sh 'java -version' - timeout(unit: 'MINUTES', time: 450) { + timeout(unit: 'MINUTES', time: 600) { script { if ("${PLATFORM}" == "ubuntu-avx") { if ("${JDK_NAME}" == "jdk_21_latest") {
