-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
.travis.yml
46 lines (46 loc) · 1.11 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
notifications:
recipients:
language: c
addons:
apt:
packages: &apt_packages
- libgdbm-dev
- zlib1g-dev
- texinfo
homebrew:
packages:
- gdbm
- zlib
- texinfo
matrix:
include:
- os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- *apt_packages
- gcc-4.9
- g++-4.9
env:
- MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
- os: linux
dist: trusty
compiler: clang
- os: linux
dist: xenial
compiler: gcc
- os: linux
dist: xenial
compiler: clang
- os: osx
before_install:
- eval "${MATRIX_EVAL}"
# sudo cannot find clang, so We install Gauche under $HOME without sudo
# https://github.com/travis-ci/travis-ci/issues/3088
- curl -o get-gauche.sh -f https://raw.githubusercontent.com/shirok/get-gauche/master/get-gauche.sh && chmod +x get-gauche.sh && ./get-gauche.sh --auto --home && ./DIST gen
script:
- ./configure && make -j4 && make check && cd doc && make