Adding tests to Jenkins

This commit is contained in:
retropikzel 2025-06-08 13:36:41 +03:00
parent bc9a133809
commit 6365930a9e
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -31,7 +31,7 @@ pipeline {
script { script {
def r7rs_implementations = sh(script: 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes', returnStdout: true).split() def r7rs_implementations = sh(script: 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes', returnStdout: true).split()
r6rs_implementations.each { implementation-> r7rs_implementations.each { implementation->
stage("${implementation} R7RS") { stage("${implementation} R7RS") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make test-r7rs-docker COMPILE_R7RS=${implementation}" sh "make test-r7rs-docker COMPILE_R7RS=${implementation}"
@ -41,5 +41,6 @@ pipeline {
} }
} }
} }
} }
} }