From 8cfac7fff46afa85f7a9fdbbfcab83bb94420a6e Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 22 Jul 2026 22:07:02 +0300 Subject: [PATCH] New builds --- Jenkinsfile | 2 ++ makings.scm | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d384698..1c232de 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,6 +28,7 @@ pipeline { } stage('tap') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'snow-chibi install --impls=chibi srfi.64' 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' @@ -57,6 +58,7 @@ pipeline { } stage('tap') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'snow-chibi install --impls=sagittarius srfi.64' 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 bb6d80e..270e2f1 100644 --- a/makings.scm +++ b/makings.scm @@ -6,7 +6,8 @@ "snow-chibi install retropikzel.compile-r7rs")) (tap (lambda (scheme) - `(,(string-append "snow-chibi install --impls=" scheme " retropikzel.tap") + `(,(string-append "snow-chibi install --impls=" scheme " srfi.64") + ,(string-append "snow-chibi install --impls=" scheme " retropikzel.tap") ,(string-append "COMPILE_R7RS=" scheme " compile-r7rs -o tap-test-program retropikzel/tap/test.scm")