From a74bcc7cc64c7f9898c358ba9c873a7e71c92fd2 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sun, 8 Jun 2025 11:26:07 +0300 Subject: [PATCH] Adding tests to Jenkins --- Jenkinsfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e82d513..c1d4d35 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,18 +11,12 @@ pipeline { } stages { - stage("Get implementation lists") { + stage('Test R6RS implementations') { steps { script { def r6rs_implementations = sh script: 'sash -L ./snow -L . compile-r7rs.scm --list-r6rs-schemes', returnStdout: true def r7rs_implementations = sh script: 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes', returnStdout: true - } - } - } - stage('Test R6RS implementations') { - steps { - script { r6rs_implementations.each { implementation-> stage("${implementation}") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {