From 6b211ca29a1b24b272b0ca0b8ff789d56bd2de36 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sun, 8 Jun 2025 11:25:28 +0300 Subject: [PATCH] Adding tests to Jenkins --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6279071..e82d513 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,8 +14,8 @@ pipeline { stage("Get implementation lists") { steps { script { - r6rs_implementations = sh script: 'sash -L ./snow -L . compile-r7rs.scm --list-r6rs-schemes', returnStdout: true - r7rs_implementations = sh script: 'sash -L ./snow -L . compile-r7rs.scm --list-r7rs-schemes', returnStdout: true + 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 } } }