Adding tests to Jenkins

This commit is contained in:
retropikzel 2025-06-08 11:21:29 +03:00
parent 01c06ec962
commit b11f574935
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -24,7 +24,7 @@ pipeline {
steps {
script {
r6rs_implementations.each { implementation->
stage("${implementation} ${test}") {
stage("${implementation}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make test-r6rs COMPILE_R7RS=${implementation}"
}