From e7d1f4b3d2da128efeeb28e6b422c91ec208f8db Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 22 Jul 2026 22:00:39 +0300 Subject: [PATCH] New builds --- Jenkinsfile | 2 ++ makings.scm | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9f85984..c2b6f92 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,6 +25,7 @@ pipeline { } stage('tap') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'snow-chibi install retropikzel.tap' sh 'COMPILE_R7RS=chibi compile-r7rs -o tap-test-program retropikzel/tap/test.scm' sh './tap-test-program' } @@ -52,6 +53,7 @@ pipeline { } stage('tap') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'snow-chibi install 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 05cbb42..0a3f940 100644 --- a/makings.scm +++ b/makings.scm @@ -6,8 +6,8 @@ "snow-chibi install retropikzel.compile-r7rs")) (tap (lambda (scheme) - (list - (string-append "COMPILE_R7RS=" + `("snow-chibi install retropikzel.tap" + ,(string-append "COMPILE_R7RS=" scheme " compile-r7rs -o tap-test-program retropikzel/tap/test.scm") "./tap-test-program"))))