New builds

This commit is contained in:
retropikzel 2026-07-22 22:01:10 +03:00
parent e7d1f4b3d2
commit 94d4915116
2 changed files with 3 additions and 3 deletions

4
Jenkinsfile vendored
View File

@ -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'
}

View File

@ -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")