-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
35 lines (32 loc) · 959 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
34
35
language: common-lisp
sudo: required
env:
matrix:
- LISP=abcl
# - LISP=allegro # heap limit exceeded
- 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 # mysterious failure...
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 :clometa)'
-e '(ql:quickload :clometa-test)'
-e '(let ((*debugger-hook*
(lambda (c h)
(declare (ignore h))
(print c t)
(uiop:quit -1))))
(clometa.i-test:test-all)
(clometa.c-test:test-all))'