From 6d41101c610dc53aa8a1f41104d47c38a4873c50 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 22 Jul 2026 17:37:28 +0300 Subject: [PATCH] New builds --- Jenkinsfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fcacae0..76a60f2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,10 +38,12 @@ pipeline { sh "snow-chibi install retropikzel.compile-r7rs" } } - "tap debug".split().each { library -> - stage("${library}") { - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "make SCHEME=${scheme} LIBRARY=${library} all install test" + script { + "tap debug".split().each { library -> + stage("${library}") { + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh "make SCHEME=${scheme} LIBRARY=${library} all install test" + } } } }