Fixing testing

This commit is contained in:
retropikzel 2026-03-12 07:56:11 +02:00
parent 0a16717d1d
commit 9eebd513d9
1 changed files with 5 additions and 4 deletions

9
Jenkinsfile vendored
View File

@ -24,10 +24,11 @@ pipeline {
steps {
script {
params.LIBRARIES.split().each { LIBRARY ->
stage("${LIBRARY}") {
params.R6RS_SCHEMES.split().each { SCHEME ->
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs run-test-docker"
stage("${LIBRARY}") {
params.R6RS_SCHEMES.split().each { SCHEME ->
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs run-test-docker"
}
}
}
}