From 41191af6cc8b6b549e32119845229f604b075999 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 12 Mar 2026 07:56:44 +0200 Subject: [PATCH] Fixing testing --- Jenkinsfile | 49 +++++++++++++++++++++++-------------------------- 1 file changed, 23 insertions(+), 26 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index beece03..3f30b50 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,31 +19,29 @@ pipeline { } stages { - stage('Tests') { - stage('R6RS') { - steps { - script { - params.LIBRARIES.split().each { LIBRARY -> - stage("${LIBRARY}") { - params.R6RS_SCHEMES.split().each { SCHEME -> - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs run-test-docker" - } - } - } - } - } - } - } - stage('R7RS') { - steps { - script { - params.LIBRARIES.split().each { LIBRARY -> - stage("${LIBRARY}") { - params.R7RS_SCHEMESsplit().each { SCHEME -> - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs run-test-docker" - } + stage('R6RS') { + steps { + script { + params.LIBRARIES.split().each { LIBRARY -> + stage("${LIBRARY}") { + params.R6RS_SCHEMES.split().each { SCHEME -> + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs run-test-docker" + } + } + } + } + } + } + } + stage('R7RS') { + steps { + script { + params.LIBRARIES.split().each { LIBRARY -> + stage("${LIBRARY}") { + params.R7RS_SCHEMESsplit().each { SCHEME -> + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs run-test-docker" } } } @@ -51,6 +49,5 @@ pipeline { } } } - } }