Skip to content

Commit

Permalink
Increase the pre-merge CI timeout to 6 hours
Browse files Browse the repository at this point in the history
I've seen several cases of PRs timing out after 4 hours though we've done a re-balance for 25.02 recently
#11826

We'll make additional efforts to balance the pre-merge CI's duration.

Let's increase the timeout to 6 hours first.

We'll continue to work on balancing the pre-merge CI's duration

Signed-off-by: Tim Liu <[email protected]>
  • Loading branch information
NvTimLiu committed Dec 11, 2024
1 parent 96a58d1 commit 80bd2b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jenkins/Jenkinsfile-blossom.premerge
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ git --no-pager diff --name-only HEAD \$BASE -- ${PREMERGE_DOCKERFILE} || true"""
steps {
script {
container('gpu') {
timeout(time: 4, unit: 'HOURS') { // step only timeout for test run
timeout(time: 6, unit: 'HOURS') { // step only timeout for test run
try {
sh "$PREMERGE_SCRIPT mvn_verify"
step([$class : 'JacocoPublisher',
Expand Down Expand Up @@ -228,7 +228,7 @@ git --no-pager diff --name-only HEAD \$BASE -- ${PREMERGE_DOCKERFILE} || true"""
script {
unstash "source_tree"
container('gpu') {
timeout(time: 4, unit: 'HOURS') {
timeout(time: 6, unit: 'HOURS') {
try {
sh "$PREMERGE_SCRIPT ci_2"
} finally {
Expand Down Expand Up @@ -260,7 +260,7 @@ git --no-pager diff --name-only HEAD \$BASE -- ${PREMERGE_DOCKERFILE} || true"""
script {
unstash "source_tree"
container('gpu') {
timeout(time: 4, unit: 'HOURS') {
timeout(time: 6, unit: 'HOURS') {
try {
sh "$PREMERGE_SCRIPT ci_scala213"
} finally {
Expand Down

0 comments on commit 80bd2b9

Please sign in to comment.