t.travis.yml - clic - Clic is an command line interactive client for gopher written in Common LISP HTML git clone git://bitreich.org/clic/ git://hg6vgqziawt5s4dj.onion/clic/ DIR Log DIR Files DIR Refs DIR Tags DIR LICENSE --- t.travis.yml (677B) --- 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=cmucl 19 - env: LISP=ecl 20 21 install: 22 - curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh 23 - git clone --depth=1 git://github.com/trivial-features/trivial-features.git ~/lisp/trivial-features 24 - git clone https://gitlab.common-lisp.net/alexandria/alexandria.git ~/lisp/alexandria 25 26 script: 27 - cl -e '(ql:quickload :babel-tests) 28 (unless (babel-tests:run) 29 (uiop:quit 1))' 30 31 sudo: required