File: .travis.yml

package info (click to toggle)
cl-nibbles 20180822.gitfb9d55b-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 200 kB
  • sloc: lisp: 1,579; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 485 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: common-lisp
sudo: required

env:
  matrix:
    - LISP=sbcl
    - LISP=ccl
    - LISP=clisp
    - LISP=abcl
    - LISP=allegro

install:
  # Install cl-travis
  - curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | bash

script:
  - cl -l nibbles -l nibbles-tests
       -e '(setf *debugger-hook*
                 (lambda (&rest ignorable)
                   (declare (ignore ignorable))
                   (uiop:quit -1)))'
       -e '(rt:do-tests)'