1
0
Fork 0

Compare commits

..

No commits in common. "f708942ae59fe9d52b0cd03873a890cded3aa699" and "00351e0c4bfa5fc3cfa75e1bdf50130d7005473a" have entirely different histories.

1 changed files with 17 additions and 17 deletions

34
Jenkinsfile vendored
View File

@ -20,7 +20,6 @@ pipeline {
stages {
stage('Build and install') {
when { not { branch 'release' } }
steps {
sh "make build-chibi"
sh "make install"
@ -28,28 +27,29 @@ pipeline {
}
stage('Test') {
when { not { branch 'release' } }
stage('R6RS') {
steps {
script {
R7RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME} R6RS") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} test-r6rs-docker"
parallel {
stage('R6RS') {
steps {
script {
R7RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME} R6RS") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} test-r6rs-docker"
}
}
}
}
}
}
}
stage('R7RS') {
steps {
script {
R7RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME} R7RS") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} test-r7rs-docker"
stage('R7RS') {
steps {
script {
R7RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME} R7RS") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} test-r7rs-docker"
}
}
}
}