Adding tests to Jenkins

This commit is contained in:
retropikzel 2025-06-08 13:25:37 +03:00
parent b0fdf3cf81
commit bc9a133809
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

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