From c7283c1e084ed967b9561ea5548f7b224802c1c8 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Fri, 3 Jul 2026 11:04:03 +0300 Subject: [PATCH] Improve Jenkins tests --- Jenkinsfile | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fd33534..d8f2a73 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,12 +38,10 @@ pipeline { script { env.LIBRARIES.split().each { LIBRARY -> stage("${LIBRARY}") { - parallel { - env.R6RS_SCHEMES.split().each { SCHEME -> - stage("${SCHEME}") { - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs test-docker" - } + env.R6RS_SCHEMES.split().each { SCHEME -> + stage("${SCHEME}") { + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh "make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs test-docker" } } } @@ -57,12 +55,10 @@ pipeline { script { env.LIBRARIES.split().each { LIBRARY -> stage("${LIBRARY}") { - parallel { - env.R7RS_SCHEMES.split().each { SCHEME -> - stage("${SCHEME}") { - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs test-docker" - } + env.R7RS_SCHEMES.split().each { SCHEME -> + stage("${SCHEME}") { + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh "make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs test-docker" } } }