forked from OdonataResearchLLC/lisp-unit
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
33 lines (30 loc) · 839 Bytes
/
.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: common-lisp
env:
matrix:
- LISP=abcl
- LISP=allegro
- LISP=sbcl
- LISP=sbcl32
- LISP=ccl
- LISP=ccl32
- LISP=clisp
- LISP=clisp32
# - LISP=cmucl
- LISP=ecl
install:
- 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:
- cl -e '(in-package :cl-user)'
-e '(ql:quickload :lisp-unit2)'
-e '(let ((*debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit -1))))
(lisp-unit2:with-failure-debugging-context
(lambda ()
(asdf:perform (quote asdf:test-op) (asdf:find-system :lisp-unit2)))))'