]> jfr.im git - solanum.git/blame - .travis.yml
doc: build with travis
[solanum.git] / .travis.yml
CommitLineData
e44504eb
VI
1# Travis-CI Build for charybdis
2# see travis-ci.org for details
3
4language: c
5
6# Use the faster container-based infrastructure.
7sudo: false
8
9matrix:
10 include:
11 - os: linux
12 compiler: gcc
13 addons:
14 apt:
15 sources: ['ubuntu-toolchain-r-test']
3a484c2c 16 packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
e44504eb
VI
17 env: COMPILER=gcc-4.8
18
19 - os: linux
20 compiler: gcc
21 addons:
22 apt:
23 sources: ['ubuntu-toolchain-r-test']
3a484c2c 24 packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
e44504eb
VI
25 env: COMPILER=gcc-4.9
26
27 - os: linux
28 compiler: gcc
29 addons:
30 apt:
31 sources: ['ubuntu-toolchain-r-test']
3a484c2c 32 packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
e44504eb
VI
33 env: COMPILER=gcc-5
34
35 - os: linux
36 compiler: clang
37 addons:
38 apt:
39 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
3a484c2c 40 packages: ['clang-3.7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
e44504eb
VI
41 env: COMPILER=clang-3.7
42
43 - os: osx
44 compiler: clang
9ea48ec3 45 env: COMPILER=clang LIBTOOLIZE=glibtoolize
e44504eb 46
467a0a79 47
e44504eb
VI
48osx_image: xcode7.3
49
50cache:
51 apt:
52 ccache:
53
54script:
9ea48ec3 55 - bash autogen.sh
883f3833 56 - CC=$COMPILER ./configure --with-shared-sqlite
e44504eb
VI
57 - make -j4
58 - make install
3a484c2c 59 - make -C doc/oper-guide html man info