Updating tests

This commit is contained in:
retropikzel 2025-09-26 13:11:06 +03:00
parent a0e0f180ab
commit 4d9ac9a156
1 changed files with 1 additions and 2 deletions

3
Jenkinsfile vendored
View File

@ -22,13 +22,12 @@ pipeline {
}
steps {
script {
//def implementations = sh(script: 'docker run retropikzel1/compile-r7rs sh -c "compile-r7rs --list-r7rs-schemes"', returnStdout: true).split()
def schemes = "chibi chicken gauche guile kawa mosh racket sagittarius stklos ypsilon"
schemes.split().each { SCHEME ->
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "test-r7rs test.scm"
sh "COMPILE_R7RS=${SCHEME} test-r7rs test.scm"
}
}
}