Improving tests

This commit is contained in:
retropikzel 2025-12-06 08:43:03 +02:00
parent c48baadae6
commit e18726d273
1 changed files with 17 additions and 13 deletions

4
Jenkinsfile vendored
View File

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