New builds

This commit is contained in:
retropikzel 2026-07-22 17:37:28 +03:00
parent b7957cdfb9
commit 6d41101c61
1 changed files with 6 additions and 4 deletions

10
Jenkinsfile vendored
View File

@ -38,10 +38,12 @@ pipeline {
sh "snow-chibi install retropikzel.compile-r7rs" sh "snow-chibi install retropikzel.compile-r7rs"
} }
} }
"tap debug".split().each { library -> script {
stage("${library}") { "tap debug".split().each { library ->
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { stage("${library}") {
sh "make SCHEME=${scheme} LIBRARY=${library} all install test" catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${scheme} LIBRARY=${library} all install test"
}
} }
} }
} }