Adding tests to Jenkins
This commit is contained in:
parent
0fb27864c8
commit
b964759f2b
|
@ -13,8 +13,8 @@ pipeline {
|
||||||
stage('Test R6RS implementations') {
|
stage('Test R6RS implementations') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
def r6rs_implementations = sh script: 'sash -L ./snow -L . compile-r7rs.scm --list-r6rs-schemes', returnStdout: true
|
def r6rs_implementations = sh(script: 'sash -L ./snow -L . compile-r7rs.scm --list-r6rs-schemes', returnStdout: true).split()
|
||||||
def r7rs_implementations = sh script: 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes', returnStdout: true
|
def r7rs_implementations = sh(script: 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes', returnStdout: true).split()
|
||||||
|
|
||||||
r6rs_implementations.each { implementation->
|
r6rs_implementations.each { implementation->
|
||||||
stage("${implementation}") {
|
stage("${implementation}") {
|
||||||
|
|
Loading…
Reference in New Issue