-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
58 lines (51 loc) · 1.23 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
language: common-lisp
sudo: false
cache:
directories:
- $HOME/.roswell
- $HOME/.config/common-lisp
addons:
apt:
packages:
- libc6-i386
- python-virtualenv
env:
global:
- PATH=~/.roswell/bin:$PATH
- ROSWELL_INSTALL_DIR=$HOME/.roswell
matrix:
- LISP=sbcl-bin
- LISP=ecl
- LISP=ccl
- LISP=clisp
# does not work because cl-info fails under ABCL
# - LISP=abcl
# under cmucl cl-info does not work either, but for different reason
# - LISP=cmucl
# Allegro does not work because of some strange errors like
# don't recognize component type :GROVEL-FILE)
# on OSX
# or fatal error: sys/cdefs.h: No such file or directory
# on Linux
# - LISP=allegro
matrix:
allow_failures:
# 10 of 26 tests failed
- env: LISP=clisp
os:
- osx
- linux
install:
- curl -L https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh | sh
- ros install asdf
- ros install rove
- ros install 40ants/cl-info
- ros install 40ants/cl-hamcrest
before_script:
- env
- ros --version
- ros config
- cl-info
script:
- rove html2text-test.asd
- curl -L https://raw.githubusercontent.com/40ants/update-gh-pages/master/build-docs.sh | sh