From 94d4915116754a9e18277742f99b11c2dddcf95a Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 22 Jul 2026 22:01:10 +0300 Subject: [PATCH] New builds --- Jenkinsfile | 4 ++-- makings.scm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c2b6f92..ab4b7d5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ pipeline { } stage('tap') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh 'snow-chibi install retropikzel.tap' + sh 'snow-chibi install --impls=chibi retropikzel.tap' sh 'COMPILE_R7RS=chibi compile-r7rs -o tap-test-program retropikzel/tap/test.scm' sh './tap-test-program' } @@ -53,7 +53,7 @@ pipeline { } stage('tap') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh 'snow-chibi install retropikzel.tap' + sh 'snow-chibi install --impls=sagittarius retropikzel.tap' sh 'COMPILE_R7RS=sagittarius compile-r7rs -o tap-test-program retropikzel/tap/test.scm' sh './tap-test-program' } diff --git a/makings.scm b/makings.scm index 0a3f940..bb6d80e 100644 --- a/makings.scm +++ b/makings.scm @@ -6,7 +6,7 @@ "snow-chibi install retropikzel.compile-r7rs")) (tap (lambda (scheme) - `("snow-chibi install retropikzel.tap" + `(,(string-append "snow-chibi install --impls=" scheme " retropikzel.tap") ,(string-append "COMPILE_R7RS=" scheme " compile-r7rs -o tap-test-program retropikzel/tap/test.scm")