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

4
Jenkinsfile vendored
View File

@ -38,7 +38,6 @@ pipeline {
script { script {
env.LIBRARIES.split().each { LIBRARY -> env.LIBRARIES.split().each { LIBRARY ->
stage("${LIBRARY}") { stage("${LIBRARY}") {
parallel {
env.R6RS_SCHEMES.split().each { SCHEME -> env.R6RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME}") { stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
@ -51,13 +50,11 @@ pipeline {
} }
} }
} }
}
stage('Test R7RS Debian') { stage('Test R7RS Debian') {
steps { steps {
script { script {
env.LIBRARIES.split().each { LIBRARY -> env.LIBRARIES.split().each { LIBRARY ->
stage("${LIBRARY}") { stage("${LIBRARY}") {
parallel {
env.R7RS_SCHEMES.split().each { SCHEME -> env.R7RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME}") { stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
@ -71,7 +68,6 @@ pipeline {
} }
} }
} }
}
post { post {
always { always {
cleanWs() cleanWs()