Fix testing

This commit is contained in:
retropikzel 2025-12-11 18:01:30 +02:00
parent 21c3ae6040
commit 9cbe17723c
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -28,7 +28,7 @@ pipeline {
[(SCHEME): {
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} test-r6rs-docker"
sh "timeout 600 make SCHEME=${SCHEME} test-r6rs-docker"
}
}
}]
@ -48,7 +48,7 @@ pipeline {
[(SCHEME): {
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} test-r7rs-docker"
sh "timeout 600 make SCHEME=${SCHEME} test-r7rs-docker"
}
}
}]