Skip to content

Commit fc69723

Browse files
committed
[CI] Adjust timeouts for tests
Due to the significant load on the Jenkins agent on the baremetal host, the timeouts for tests and the pipeline are insufficient to process all test cases. Here we temporarily extend the timeouts to let CI runs, but later we're going to move some tests to containers: HPCINFRA-3252 to improve timings and to decrease the load to baremetal host. Signed-off-by: Viacheslav Login <[email protected]>
1 parent f94a3ac commit fc69723

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.ci/matrix_job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,6 @@ pipeline_stop:
268268
269269
failFast: false
270270

271-
timeout_minutes: 150
271+
timeout_minutes: 180
272272

273273
taskName: '${flags}/${name}/${axis_index}'

contrib/jenkins_tests/globals.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ NPROC=8
2828
make_opt="-j${NPROC}"
2929

3030
if [ $(command -v timeout >/dev/null 2>&1 && echo $?) ]; then
31-
timeout_exe="timeout -s SIGKILL 20m"
32-
long_timeout_exe="timeout -s SIGKILL 40m"
31+
timeout_exe="timeout -s SIGKILL 40m"
32+
long_timeout_exe="timeout -s SIGKILL 60m"
3333
fi
3434

3535
trap "on_exit" INT TERM ILL KILL FPE SEGV ALRM

0 commit comments

Comments
 (0)