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 {
env.LIBRARIES.split().each { LIBRARY ->
stage("${LIBRARY}") {
parallel {
env.R6RS_SCHEMES.split().each { SCHEME ->
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
@ -51,13 +50,11 @@ 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') {
@ -71,7 +68,6 @@ pipeline {
}
}
}
}
post {
always {
cleanWs()