https://nix-community.github.io/nixpkgs-swh/sources-unstable.json
Raw File
Tip revision: 4505ff23b3ee16ad5ff176d8b58d04f8010f99d6 authored by on None
Tip revision: 4505ff2
.travis.yml
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)'
back to top