-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (27 loc) · 668 Bytes
/
Copy path.travis.yml
File metadata and controls
32 lines (27 loc) · 668 Bytes
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
language: lisp
sudo: required
env:
matrix:
- LISP=abcl
- LISP=sbcl
# - LISP=sbcl32
- LISP=ccl
# - LISP=ccl32
- LISP=clisp
# - LISP=clisp32
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
before_script:
- echo "(defsystem :dummy-cl-travis-system)" > ~/lisp/dummy-cl-travis-system.asd
script:
- cl -e '(ql:quickload :alexandria)
(ql:quickload :cffi)
(asdf:load-system :cl-readline)'
[ $? -eq 1 ]
notifications:
email: false