-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
33 lines (28 loc) · 1.13 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: lisp
sudo: required
env:
matrix:
- LISP=sbcl
- LISP=ccl
python:
- "2.7"
# Either use a local install.sh script or install it via curl. Feel
# free to simplify this section in your own .travis.yml file.
install:
- sudo pip install autobahntestsuite
- if [ -x ./install.sh ] && head -2 ./install.sh | grep '^# cl-travis' > /dev/null;
then
./install.sh;
else
curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | sh;
fi
script:
- echo $(which wstest)
- if [ "$LISP" = "sbcl" ]; then
sbcl --non-interactive --eval '(ql:quickload :trivial-backtrace)' --eval '(setf *debugger-hook* (lambda (c h) (declare (ignore h)) (trivial-backtrace:print-backtrace c :output *standard-output*) (uiop:quit -1)))' --eval '(asdf:test-system :wt)';
elif [ "$LISP" = "ccl" ]; then
ccl --eval '(ql:quickload :trivial-backtrace)' --eval '(setf *debugger-hook* (lambda (c h) (declare (ignore h)) (trivial-backtrace:print-backtrace c :output *standard-output*) (uiop:quit -1)))' --eval '(asdf:test-system :wt)' --eval '(uiop:quit)';
fi
notifications:
email: