New builds

This commit is contained in:
retropikzel 2026-07-22 22:00:39 +03:00
parent 09c16e0308
commit e7d1f4b3d2
2 changed files with 4 additions and 2 deletions

2
Jenkinsfile vendored
View File

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

View File

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