Adding tests to Jenkins
This commit is contained in:
parent
6b211ca29a
commit
a74bcc7cc6
|
@ -11,18 +11,12 @@ pipeline {
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
|
|
||||||
stage("Get implementation lists") {
|
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
|
||||||
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
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage('Test R6RS implementations') {
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
r6rs_implementations.each { implementation->
|
r6rs_implementations.each { implementation->
|
||||||
stage("${implementation}") {
|
stage("${implementation}") {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
|
Loading…
Reference in New Issue