Tweak .travis.yml and circle.yml.

This commit is contained in:
Eitaro Fukamachi 2015-06-16 03:52:02 +09:00
parent c8b7318ee6
commit 74ad7c85ae
2 changed files with 5 additions and 8 deletions

View file

@ -3,9 +3,9 @@ sudo: required
env:
global:
- COVERAGE_EXCLUDE=t/
- PATH=~/.roswell/bin:$PATH
matrix:
- LISP=sbcl COVERALLS=true
- LISP=sbcl
- LISP=ccl
install:
@ -14,7 +14,6 @@ install:
before_script:
- git clone https://github.com/fukamachi/clack ~/lisp/clack
- git clone https://github.com/fukamachi/cl-coveralls ~/lisp/cl-coveralls
- git clone https://github.com/fukamachi/prove ~/lisp/prove
- ros -l ~/lisp/prove/prove.asd install prove

View file

@ -1,15 +1,13 @@
machine:
environment:
PATH: ~/.roswell/bin:$PATH
LISP: $(if [ "$CIRCLE_NODE_INDEX" = 0 ]; then echo "sbcl"; else echo "ccl"; fi)
COVERALLS: $(if [ "$LISP" = "sbcl" ]; then echo "true"; fi)
COVERAGE_EXCLUDE: t/
checkout:
pre:
- curl -L https://raw.githubusercontent.com/snmsts/roswell/master/scripts/install-for-ci.sh | sh
- case $CIRCLE_NODE_INDEX in
0) ros config set default.lisp sbcl-bin ;;
1) ros install ccl-bin;
ros config set default.lisp ccl-bin ;;
esac
- ros run -- --version
dependencies: