Improving tests

This commit is contained in:
retropikzel 2025-12-06 12:44:02 +02:00
parent 13291c9f80
commit b77f3788d0
1 changed files with 4 additions and 8 deletions

4
Jenkinsfile vendored
View File

@ -32,11 +32,9 @@ pipeline {
parallel params.R6RS_SCHEMES.split().collectEntries { SCHEME -> parallel params.R6RS_SCHEMES.split().collectEntries { SCHEME ->
[(SCHEME): { [(SCHEME): {
def IMG="${SCHEME}:head" def IMG="${SCHEME}:head"
stage("${SCHEME} - ${LIBRARY}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} test-r6rs-docker" sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} test-r6rs-docker"
} }
}
}] }]
} }
} }
@ -55,11 +53,9 @@ pipeline {
if("${SCHEME}" == "chicken") { if("${SCHEME}" == "chicken") {
IMG="${SCHEME}:5" IMG="${SCHEME}:5"
} }
stage("${SCHEME} - ${LIBRARY}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} test-r7rs-docker" sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} test-r7rs-docker"
} }
}
}] }]
} }
} }