From 55c650b2fd846d6085e58c009d02f89fc04ce513 Mon Sep 17 00:00:00 2001 From: lzh Date: Wed, 29 Apr 2026 23:46:55 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20Build=20Dependencies=20=E8=B6=85?= =?UTF-8?q?=E6=97=B6=E4=BB=8E=2015=20=E5=88=86=E9=92=9F=E8=B0=83=E8=87=B3?= =?UTF-8?q?=2030=20=E5=88=86=E9=92=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Maven 全量依赖下载在空缓存场景下超过 15 分钟导致 stage 被 kill, Jenkinsfile 全局超时 90 分钟已足够,放宽 deps 阶段独立超时。 Co-Authored-By: Claude Opus 4.7 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 447ca2fe..9e261f9f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -242,7 +242,7 @@ pipeline { def stageStartTime = System.currentTimeMillis() echo "📦 Building dependencies base image with Maven cache..." - timeout(time: 15, unit: 'MINUTES') { + timeout(time: 30, unit: 'MINUTES') { // 【优化1】使用 Maven 缓存卷加速依赖下载 sh """ set -e