Adding tests to Jenkins

This commit is contained in:
retropikzel 2025-06-08 11:23:58 +03:00
parent b11f574935
commit c119cbe0f3
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -14,8 +14,8 @@ pipeline {
stage("Get implementation lists") {
steps {
script {
r6rs_implementations = sh 'sash -L ./snow -L . compile-r7rs.scm --list-r6rs-schemes'
r7rs_implementations = sh 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes'
r6rs_implementations = sh 'sash -L ./snow -L . compile-r7rs.scm --list-r6rs-schemes', returnStdout: true
r7rs_implementations = sh 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes', returnStdout: true
}
}
}