Improve Jenkins tests

This commit is contained in:
retropikzel 2026-07-03 08:42:42 +03:00
parent 7d87d4643e
commit 8c282b6679
1 changed files with 12 additions and 8 deletions

4
Jenkinsfile vendored
View File

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