-
Notifications
You must be signed in to change notification settings - Fork 41
/
.travis.yml
38 lines (34 loc) · 1.03 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
34
35
36
37
38
language: common-lisp
branches:
only:
- master
- integration
sudo: required
env:
matrix:
# - LISP=abcl # Out of memory PermGen space
# - LISP=allegro # This request cannot be satisfied because you have hit the Allegro CL Free Express heap limit.
- LISP=sbcl
- LISP=sbcl32
- LISP=ccl
- LISP=ccl32
- LISP=clisp
- LISP=clisp32
# - LISP=cmucl # /home/travis/.cim/bin/cl: 4: .: Can't open /home/travis/.cim/config/current.3271
- 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 (list :on-lisp :on-lisp-test))'
-e '(let ((*debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit -1))))
(lisp-unit2:with-failure-debugging ()
(on-lisp-test:run-all-tests)))'