lack/.travis.yml

25 lines
850 B
YAML
Raw Normal View History

2015-03-07 04:28:37 +09:00
language: common-lisp
env:
matrix:
- LISP=sbcl
- LISP=ccl
install:
# Install cl-travis
- curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | bash
2015-03-07 04:29:29 +09:00
before_script:
- git clone https://github.com/fukamachi/fast-http ~/lisp/fast-http
- git clone https://github.com/fukamachi/quri ~/lisp/quri
- git clone https://github.com/fukamachi/cl-cookie ~/lisp/cl-cookie
2015-03-07 04:29:29 +09:00
- git clone https://github.com/fukamachi/dexador ~/lisp/dexador
2015-03-12 21:31:12 +09:00
- git clone https://github.com/fukamachi/http-body ~/lisp/http-body
2015-03-07 04:29:29 +09:00
2015-03-07 04:28:37 +09:00
script:
2015-03-07 04:43:16 +09:00
- cl -l prove -e '(or (every (function identity)
(list (prove:run :t-lack)
2015-03-18 15:34:52 +09:00
(prove:run :t-lack-middleware-static)
(prove:run :t-lack-middleware-session)))
2015-03-07 04:43:16 +09:00
(uiop:quit -1))'