Improving tests

This commit is contained in:
retropikzel 2025-12-06 12:01:48 +02:00
parent 0a56d28ff0
commit 36f530d826
1 changed files with 13 additions and 17 deletions

4
Jenkinsfile vendored
View File

@ -32,7 +32,6 @@ pipeline {
script { script {
params.LIBRARIES.split().each { LIBRARY -> params.LIBRARIES.split().each { LIBRARY ->
stage("${LIBRARY}") { stage("${LIBRARY}") {
stages {
params.R6RS_SCHEMES.split().each { SCHEME -> params.R6RS_SCHEMES.split().each { SCHEME ->
def IMG="${SCHEME}:head" def IMG="${SCHEME}:head"
stage("${SCHEME} - ${LIBRARY}") { stage("${SCHEME} - ${LIBRARY}") {
@ -46,13 +45,11 @@ pipeline {
} }
} }
} }
}
stage('R7RS x86_64 Debian') { stage('R7RS x86_64 Debian') {
steps { steps {
script { script {
params.LIBRARIES.split().each { LIBRARY -> params.LIBRARIES.split().each { LIBRARY ->
stage("${LIBRARY}") { stage("${LIBRARY}") {
stages {
params.R7RS_SCHEMES.split().each { SCHEME -> params.R7RS_SCHEMES.split().each { SCHEME ->
def IMG="${SCHEME}:head" def IMG="${SCHEME}:head"
if("${SCHEME}" == "chicken") { if("${SCHEME}" == "chicken") {
@ -69,7 +66,6 @@ pipeline {
} }
} }
} }
}
} }
} }