From 376ad49dedb18e0507538baf476a402531ea278e Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 12 Mar 2026 08:00:42 +0200 Subject: [PATCH] Fixing testing --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3f30b50..685cdcf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,8 +23,8 @@ pipeline { steps { script { params.LIBRARIES.split().each { LIBRARY -> - stage("${LIBRARY}") { - params.R6RS_SCHEMES.split().each { SCHEME -> + params.R6RS_SCHEMES.split().each { SCHEME -> + stage("${SCHEME} ${LIBRARY}") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs run-test-docker" } @@ -38,8 +38,8 @@ pipeline { steps { script { params.LIBRARIES.split().each { LIBRARY -> - stage("${LIBRARY}") { - params.R7RS_SCHEMESsplit().each { SCHEME -> + params.R7RS_SCHEMESsplit().each { SCHEME -> + stage("${SCHEME} ${LIBRARY}") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs run-test-docker" }