-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (29 loc) · 737 Bytes
/
Copy path.travis.yml
File metadata and controls
34 lines (29 loc) · 737 Bytes
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
language: common-lisp
sudo: required
branches:
only:
- master
env:
matrix:
- LISP=sbcl
- LISP=sbcl32
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
script:
- cl -l fiveam
-e '(setf fiveam:*debug-on-error* t
fiveam:*debug-on-failure* t)'
-e '(setf *debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit -1)))'
-e '(ql:quickload (list :kenzo :kenzo-test))'
-e '(fiveam:run!)'
notifications:
email:
- gerd.heber@gmail.com