Working on chibi build

This commit is contained in:
retropikzel 2024-10-05 12:58:41 +03:00
parent 4340630ec2
commit c8583aafea
3 changed files with 3 additions and 3 deletions

2
Jenkinsfile vendored
View File

@ -67,7 +67,7 @@ pipeline {
sh 'find . -name "*.o" -delete'
sh 'find . -name "*.o" -delete'
sh 'chibi-scheme -I ./snow r7rs-tests.scm'
sh 'chibi-scheme -I ./snow/chibi r7rs-tests.scm'
sh 'for f in *.log; do cp -- "$f" "reports/chibi-$f"; done'
sh 'ls reports'
stash name: 'reports', includes: 'reports/*'

View File

@ -1,6 +1,6 @@
test-chibi-r7rs-test:
docker run -it -v ${PWD}:/workdir:z schemers/chibi bash -c "cd workdir && chibi-scheme -I ./snow r7rs-tests.scm"
docker run -it -v ${PWD}:/workdir:z schemers/chibi bash -c "cd workdir && chibi-scheme -I ./snow/chibi r7rs-tests.scm"
test-chicken-r7rs-test:

View File

@ -1,6 +1,6 @@
(define implementations
'(((name . chibi) (command . "chibi-scheme -I ./snow"))
'(((name . chibi) (command . "chibi-scheme -I ./snow/chibi"))
((name . chicken)
(command . "csc -include-path ./snow/chibi -X r7rs -R r7rs")
(library-command . "csc -include-path ./snow/chibi -X r7rs -R r7rs -s -J"))