forked from libre-man/unix-opts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (37 loc) · 877 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
36
37
38
39
40
41
42
43
language: lisp
sudo: required
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-7-dev
- lib32stdc++-7-dev
env:
matrix:
- LISP=abcl
- LISP=sbcl
- LISP=sbcl32
- LISP=ccl
- LISP=ccl32
- LISP=clisp
- LISP=clisp32
- LISP=ecl
matrix:
allow_failures:
- env: LISP=ccl32 # issue filed at https://github.com/Clozure/ccl/issues/304
install:
- if [ -x ./install.sh ] && head -2 ./install.sh | grep '^# cl-travis' > /dev/null;
then
./install.sh;
else
curl https://raw.githubusercontent.com/sionescu/cl-travis/master/install.sh | sh;
fi
before_script:
- echo "(defsystem :dummy-cl-travis-system)" > ~/lisp/dummy-cl-travis-system.asd
script:
- cl -e '(asdf:load-system :unix-opts-tests)
(unix-opts:run-tests)'
[ $? -eq 1 ]
notifications:
email: false