-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.travis.yml
42 lines (36 loc) · 946 Bytes
/
.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: false
env:
global:
- PATH=~/.roswell/bin:~/nginx/sbin:$PATH
- ROSWELL_INSTALL_DIR=$HOME/.roswell
- COVERAGE_EXCLUDE=t
matrix:
- LISP=sbcl-bin
- LISP=ccl-bin
install:
# Roswell
- curl -L https://raw.githubusercontent.com/snmsts/roswell/master/scripts/install-for-ci.sh | sh
# prove
- ros install prove
cache:
directories:
- $HOME/.roswell
- $HOME/nginx
- $HOME/.config/common-lisp
before_script:
- ros --version
- ros config
script:
- ros -e '(ql:quickload (list :fiveam :cl-coveralls))'
-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 :ansi-spec-test)'
-e '(ansi-spec-test:run-tests)'
notifications:
email: