.travis.yml - clic - Clic is an command line interactive client for gopher written in Common LISP
HTML git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/clic/
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
DIR LICENSE
---
.travis.yml (603B)
---
1 language: lisp
2
3 env:
4 matrix:
5 # - LISP=abcl
6 # - LISP=allegro
7 - LISP=sbcl
8 - LISP=sbcl32
9 - LISP=ccl
10 - LISP=ccl32
11 - LISP=clisp
12 - LISP=clisp32
13 # - LISP=cmucl
14 - LISP=ecl
15
16 matrix:
17 allow_failures:
18 - env: LISP=ecl
19
20 install:
21 - curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh
22 - if [ "${LISP:(-2)}" = "32" ]; then
23 sudo apt-get install libc6-dev-i386;
24 fi
25
26 script:
27 - cl -e '(ql:quickload :cffi-grovel)
28 (ql:quickload :trivial-features-tests)
29 (unless (trivial-features-tests:run)
30 (uiop:quit 1))'