Improving testing

This commit is contained in:
retropikzel 2025-11-28 14:16:24 +02:00
parent c55ac3c3f6
commit 3a1c0e8ab0
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -33,7 +33,7 @@ pipeline {
def IMG="${SCHEME}:head"
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} test-r6rs-docker"
sh "timeout 6000 make SCHEME=${SCHEME} test-r6rs-docker"
}
}
}
@ -50,7 +50,7 @@ pipeline {
}
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} test-r7rs-docker"
sh "timeout 6000 make SCHEME=${SCHEME} test-r7rs-docker"
}
}
}