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