From 6365930a9e8b376b38313b148d1a848ea53671dc Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sun, 8 Jun 2025 13:36:41 +0300 Subject: [PATCH] Adding tests to Jenkins --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index bfc259e..a150ba6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,7 +31,7 @@ pipeline { script { def r7rs_implementations = sh(script: 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes', returnStdout: true).split() - r6rs_implementations.each { implementation-> + r7rs_implementations.each { implementation-> stage("${implementation} R7RS") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh "make test-r7rs-docker COMPILE_R7RS=${implementation}" @@ -41,5 +41,6 @@ pipeline { } } } + } }