forked from williamyaoh/named-read-macros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
64 lines (58 loc) · 1.73 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Come on, Travis. I set the language directly, and you can't even
# show it correctly in my build dashboard?
language: common-lisp
env:
matrix:
- LISP=abcl
- LISP=ccl
- LISP=ccl32
- LISP=sbcl
- LISP=sbcl32
- LISP=sbcl COVERALLS=true
- LISP=cmucl
- LISP=ecl
matrix:
allow_failures:
- env: LISP=cmucl
- env: LISP=ecl
- env: LISP=ccl32
fast_finish: true
notifications:
email:
on_success: change
on_failure: always
install:
- if [ "$LISP" = "allegro" ]; then sudo apt-get install libc6-dev-i386 libffi-dev:i386; fi
- curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh
- if [ -n "$COVERALLS" ];
then
git clone https://github.com/fukamachi/cl-coveralls ~/lisp/cl-coveralls;
cd ~/lisp/cl-coveralls;
git checkout a7dea1803f4b5aae8f939db6bbf26ab4389f71ff;
fi
script:
- if [ -n "$COVERALLS" ]
; then
cl -l named-readtables
-l fiveam
-l cl-coveralls
-e '(in-package :cl-user)
(setf *debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit 1)))'
-e "(coveralls:with-coveralls (:exclude (list \"test\"))
(ql:quickload 'named-read-macros-test)
(asdf:test-system 'named-read-macros))"
; else
cl -l named-readtables
-l fiveam
-e '(in-package :cl-user)
(setf *debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit 1)))'
-e "(ql:quickload 'named-read-macros-test)"
-e "(or (fiveam:run! 'named-read-macros-test:named-read-macros-tests)
(uiop:quit 1))"
; fi