-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
56 lines (47 loc) · 1.24 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
language: common-lisp
sudo: false
os:
- osx
# - linux
env:
global:
- PATH=~/.roswell/bin:$PATH
- ROSWELL_INSTALL_DIR=$HOME/.roswell
- COVERAGE_EXCLUDE=tests # for Prove or Rove
- ROSWELL_BRANCH=master # use Roswell master for latest updates
matrix:
- LISP=sbcl COVERAGE=1
# - LISP=ccl COVERAGE=1
# - LISP=abcl
# - LISP=clisp
# - LISP=cmucl
# - LISP=ecl
matrix:
fast_finish: true
allow_failures:
- env: LISP=ccl COVERAGE=1
- env: LISP=clisp
- env: LISP=abcl
- env: LISP=alisp
- env: LISP=cmucl
- env: LISP=ecl
addons:
apt:
packages:
# - libc6-i386 # needed for some implementations
# - openjdk-8-jre # needed for ABCL
cache:
directories:
- $HOME/.roswell
- $HOME/.config/common-lisp
install:
- curl -L https://raw.githubusercontent.com/roswell/roswell/$ROSWELL_BRANCH/scripts/install-for-ci.sh | sh
- git clone --depth=1 git://github.com/soemraws/parse-float.git ~/common-lisp/parse-float
- ros install fukamachi/rove # Use Rove master for latest updates
- if [ "$COVERAGE" = "1" ]; then ros install fukamachi/cl-coveralls; fi
script:
- rove cl-kraken.asd
after_script:
- if [ "$COVERAGE" = "1" ]; then
coveralls report/;
fi