-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.travis.yml
More file actions
24 lines (21 loc) · 719 Bytes
/
.travis.yml
File metadata and controls
24 lines (21 loc) · 719 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
language: common-lisp
sudo: required
env:
matrix:
- LISP=sbcl
- LISP=ccl
install:
# Install cl-travis
- curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh
# Always use the latest Serapeum.
- git clone --depth=1 https://github.com/ruricolist/serapeum.git ~/lisp/serapeum
- git clone --depth=1 https://github.com/sharplispers/cxml.git ~/lisp/cxml
script:
- cl -l fiveam -l FXML -l FXML/test
-e '(setf fiveam:*on-error* :debug
fiveam:*on-failure* :debug)'
-e '(setf *debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit -1)))'
-e '(or (fxml.test:run-tests) (uiop:quit 1))'