New builds
This commit is contained in:
parent
fd7e43de70
commit
42c81ad668
|
|
@ -26,7 +26,8 @@ pipeline {
|
|||
}
|
||||
stage('tap') {
|
||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||
sh 'COMPILE_R7RS=chibi compile-r7rs '
|
||||
sh 'COMPILE_R7RS=chibi compile-r7rs -o tap-test-program retropikzel/tap/test.scm'
|
||||
sh './tap-test-program'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,11 @@
|
|||
"snow-chibi install retropikzel.compile-r7rs"))
|
||||
(tap
|
||||
(lambda (scheme)
|
||||
(list (string-append "COMPILE_R7RS=" scheme " compile-r7rs ")))))
|
||||
(list
|
||||
(string-append "COMPILE_R7RS="
|
||||
scheme
|
||||
" compile-r7rs -o tap-test-program retropikzel/tap/test.scm")
|
||||
"./tap-test-program"))))
|
||||
|
||||
(map (lambda (scheme)
|
||||
`((name ,scheme)
|
||||
|
|
|
|||
Loading…
Reference in New Issue