Skip to content

Commit 7ec59b1

Browse files
committed
Improve CI stability
Signed-off-by: Yanchao Lu <[email protected]>
1 parent d752784 commit 7ec59b1

File tree

2 files changed

+153
-65
lines changed

2 files changed

+153
-65
lines changed

jenkins/Build.groovy

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ LLM_DOCKER_IMAGE = env.dockerImage
1919
// Always use x86_64 image for agent
2020
AGENT_IMAGE = env.dockerImage.replace("aarch64", "x86_64")
2121

22-
POD_TIMEOUT_SECONDS = env.podTimeoutSeconds ? env.podTimeoutSeconds : "21600"
23-
POD_TIMEOUT_SECONDS_TMP = env.podTimeoutSeconds ? env.podTimeoutSeconds : "43200"
22+
POD_TIMEOUT_SECONDS_BUILD = env.podTimeoutSeconds ? env.podTimeoutSeconds : "43200"
2423

2524
// Literals for easier access.
2625
@Field
@@ -169,7 +168,7 @@ def createKubernetesPodConfig(image, type, arch = "amd64")
169168
containerConfig = """
170169
- name: trt-llm
171170
image: ${image}
172-
command: ['sleep', ${POD_TIMEOUT_SECONDS_TMP}]
171+
command: ['sleep', ${POD_TIMEOUT_SECONDS_BUILD}]
173172
volumeMounts:
174173
- name: sw-tensorrt-pvc
175174
mountPath: "/mnt/sw-tensorrt-pvc"

0 commit comments

Comments
 (0)