-
Notifications
You must be signed in to change notification settings - Fork 25
/
.travis.yml
42 lines (37 loc) · 1.19 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
language: common-lisp
sudo: required
env:
matrix:
- LISP=sbcl COVERALLS=true
- LISP=ccl
# - LISP=clisp
# - LISP=ecl
# - LISP=abcl
install:
- if [ -x ./install.sh ] && head -2 ./install.sh | grep '^# cl-travis' > /dev/null;
then
./install.sh;
else
curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | sh;
fi
# Coveralls support
- git clone https://github.com/fukamachi/cl-coveralls ~/lisp/cl-coveralls
script:
- cl -l prove -l cl-coveralls
-e '(in-package :cl-user)'
-e '(ql:quickload :let-over-lambda)'
-e '(setf prove:*debug-on-error* t)'
-e '(setf *debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit -1)))'
-e '(coveralls:with-coveralls (:exclude (list "t"))
(or (prove:run :let-over-lambda-test)
(uiop:quit -1)))'
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/fba7308ceb6194ceb9ff
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false