Working on chibi build
This commit is contained in:
parent
4340630ec2
commit
c8583aafea
|
@ -67,7 +67,7 @@ pipeline {
|
||||||
sh 'find . -name "*.o" -delete'
|
sh 'find . -name "*.o" -delete'
|
||||||
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 'for f in *.log; do cp -- "$f" "reports/chibi-$f"; done'
|
||||||
sh 'ls reports'
|
sh 'ls reports'
|
||||||
stash name: 'reports', includes: 'reports/*'
|
stash name: 'reports', includes: 'reports/*'
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,6 +1,6 @@
|
||||||
test-chibi-r7rs-test:
|
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:
|
test-chicken-r7rs-test:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
(define implementations
|
(define implementations
|
||||||
'(((name . chibi) (command . "chibi-scheme -I ./snow"))
|
'(((name . chibi) (command . "chibi-scheme -I ./snow/chibi"))
|
||||||
((name . chicken)
|
((name . chicken)
|
||||||
(command . "csc -include-path ./snow/chibi -X r7rs -R r7rs")
|
(command . "csc -include-path ./snow/chibi -X r7rs -R r7rs")
|
||||||
(library-command . "csc -include-path ./snow/chibi -X r7rs -R r7rs -s -J"))
|
(library-command . "csc -include-path ./snow/chibi -X r7rs -R r7rs -s -J"))
|
||||||
|
|
Loading…
Reference in New Issue