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