Improve Jenkins tests

This commit is contained in:
retropikzel 2026-07-03 11:04:03 +03:00
parent cfbead065e
commit c7283c1e08
1 changed files with 8 additions and 12 deletions

20
Jenkinsfile vendored
View File

@ -38,12 +38,10 @@ pipeline {
script {
env.LIBRARIES.split().each { LIBRARY ->
stage("${LIBRARY}") {
parallel {
env.R6RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs test-docker"
}
env.R6RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs test-docker"
}
}
}
@ -57,12 +55,10 @@ pipeline {
script {
env.LIBRARIES.split().each { LIBRARY ->
stage("${LIBRARY}") {
parallel {
env.R7RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs test-docker"
}
env.R7RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs test-docker"
}
}
}