1234567891011121314151617181920212223 |
- language: common-lisp
- sudo: false
- env:
- global:
- - PATH=~/.roswell/bin:$PATH
- - ROSWELL_INSTALL_DIR=$HOME/.roswell
- matrix:
- - LISP=sbcl-bin
- - LISP=ccl-bin
- install:
- - curl -L https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh | sh
- cache:
- directories:
- - $HOME/.roswell
- - $HOME/.config/common-lisp
- script:
- - ros -s prove -e "(ql:quickload '(coleslaw coleslaw-test))"
- -e '(or (prove:run :coleslaw-test) (uiop:quit -1))'
|