-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
74 lines (68 loc) · 1.66 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
language: common-lisp
os: linux
notifications:
email: false
addons:
apt:
packages:
- libc6-i386
- openjdk-8-jre
env:
global:
- PATH=$HOME/.roswell/bin:$PATH
- ROSWELL_INSTALL_DIR=$HOME/.roswell
- COVERAGE_EXCLUDE=t
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
install:
# Install Roswell
- curl -L https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh | sh
- ros install fukamachi/rove
- pip install Flask
before_script:
- echo "JSON-Schema-Test-Suite"
- git submodule status JSON-Schema-Test-Suite/
- ros --version
- ros config
- ros -s json-schema -e '(print "precompiled json-schema")'
- cd JSON-Schema-Test-Suite/bin && ./jsonschema_suite serve &
script:
- ros dynamic-space-size=4096 exec rove json-schema.asd
jobs:
fast_finish: 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:master
script:
- docker run --rm -it -v $PWD:/work:Z quay.io/fisxoj/coo:master
deploy:
provider: pages:git
edge: true
local_dir: docs
if: type = push AND branch = master