-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.travis.yml
More file actions
59 lines (51 loc) · 1.22 KB
/
.travis.yml
File metadata and controls
59 lines (51 loc) · 1.22 KB
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
env:
matrix:
- SCHEME="ChezScheme_master"
- SCHEME="Guile_2.0"
- SCHEME="Guile_2.1"
- SCHEME="Larceny"
- SCHEME="Racket_6.2"
- SCHEME="Racket_HEAD"
- SCHEME="SagittariusScheme"
- SCHEME="VicareScheme"
matrix:
allow_failures:
- env: SCHEME="Larceny"
fast_finish: true
addons:
apt:
packages:
# For Vicare
- libgmp-dev
# Sagittarius
- libgc-dev
- zlib1g-dev
- libffi-dev
# For Larceny
- libc6:i386
# GNU Guile
- libunistring-dev
- gcc-4.8
sources:
- ubuntu-toolchain-r-test
language: c
cache:
ccache: true
directories:
- $HOME/opt
os:
- linux
compiler:
- gcc
before_script:
# Install machine-code
- wget https://github.com/weinholt/machine-code/archive/master.zip -O machine-code-master.zip
- unzip machine-code-master.zip
- mkdir -p external && mv machine-code-master external/machine-code
- export SCHEME_LIBRARY_PATH=$PWD/external
# Install scheme-ci
- wget https://github.com/weinholt/scheme-ci/archive/master.zip -O scheme-ci-master.zip
- unzip scheme-ci-master.zip
- eval "$(CC=gcc-4.8 INSTALL_TARGET=$HOME/opt scheme-ci-master/install-scheme.sh $SCHEME)"
script:
- ./run-tests.sh