Fixing testing

This commit is contained in:
retropikzel 2026-01-25 20:05:09 +02:00
parent f3f7f02d85
commit 38c30ef6b5
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
params.R6RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} RNRS=r6rs test-docker"
sh "make SCHEME=${SCHEME} test-r6rs-docker"
}
}
}
@ -42,7 +42,7 @@ pipeline {
params.R7RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} RNRS=r7rs test-docker"
sh "make SCHEME=${SCHEME} test-r7rs-docker"
}
}
}