Add timeout to tests

This commit is contained in:
retropikzel 2025-06-08 22:35:31 +03:00
parent b169fd1820
commit 3ffa404af1
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -34,7 +34,7 @@ pipeline {
r7rs_implementations.each { implementation->
stage("${implementation} R7RS") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make test-r7rs-docker COMPILE_R7RS=${implementation}"
sh "timeout 600 make test-r7rs-docker COMPILE_R7RS=${implementation}"
}
}
}