1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
retropikzel f708942ae5 Adding release builds 2025-12-11 10:44:10 +02:00
retropikzel 85b506bbd9 Adding release builds 2025-12-11 10:43:05 +02:00
1 changed files with 17 additions and 17 deletions

34
Jenkinsfile vendored
View File

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