-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
76 lines (67 loc) · 1.38 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
65
66
67
68
69
70
71
72
73
74
75
76
language: common-lisp
os: linux
notifications:
email: false
addons:
apt:
packages:
- libc6-i386
- openjdk-8-jre
services:
- docker
env:
global:
- PATH=$HOME/.roswell/bin:$PATH
- ROSWELL_INSTALL_DIR=$HOME/.roswell
- COVERAGE_EXCLUDE=t
matrix:
matrix:
install:
# Install Roswell
- curl -L https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh | sh
- ros install fukamachi/rove
cache:
directories:
- $HOME/.roswell
- $HOME/.config/common-lisp
# This gets the environment overridden to set the lisp implementation to test
test-job: &test
stage: test
before_script:
- ros --version
- ros config
script:
- rove coo.asd
jobs:
finish_fast: true
allow_failures:
- env: LISP=clisp
- env: LISP=abcl
- env: LISP=ecl
include:
- <<: *test
env:
- LISP=sbcl-bin COVERALLS=true
- <<: *test
env:
- LISP=ccl-bin
- <<: *test
env:
- LISP=ecl
- <<: *test
env:
- LISP=allegro
- <<: *test
env:
- LISP=abcl
- name: update docs
stage: deploy
before_script:
- docker pull quay.io/fisxoj/coo:v1
script:
- docker run --rm -it -v $PWD:/work:Z quay.io/fisxoj/coo:v1
deploy:
provider: pages:git
edge: true
local_dir: docs
if: type = push AND branch = master