.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 (475B)
---
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
23 script:
24 - cl -e '(ql:quickload :trivial-garbage/tests)
25 (unless (trivial-garbage-tests:run)
26 (uiop:quit 1))'