From 01c06ec9621b980d9041b1a50207aed84f4a1e3a Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sun, 8 Jun 2025 11:20:06 +0300 Subject: [PATCH] Adding tests to Jenkins --- Jenkinsfile | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 73c5d00..1423023 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,20 +15,18 @@ pipeline { steps { script { r6rs_implementations = sh 'sash -L ./snow -L . compile-r7rs.scm --list-r6rs-schemes' - r7rs_implementations = sh 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes' + r7rs_implementations = sh 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes' } } } - stages { - stage('Test R6RS implementations') { - steps { - script { - r6rs_implementations.each { implementation-> - stage("${implementation} ${test}") { - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "make test-r6rs COMPILE_R7RS=${implementation}" - } + stage('Test R6RS implementations') { + steps { + script { + r6rs_implementations.each { implementation-> + stage("${implementation} ${test}") { + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh "make test-r6rs COMPILE_R7RS=${implementation}" } } }