24 lines
546 B
YAML
24 lines
546 B
YAML
language: common-lisp
|
|
sudo: true
|
|
|
|
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
|
|
- ros install coleslaw
|
|
|
|
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))'
|
|
- cli-tests/basic.sh
|