]> jfr.im git - solanum.git/blob - .travis.yml
m_rehash: Require admin privileges for REHASH SSLD.
[solanum.git] / .travis.yml
1 # Travis-CI Build for charybdis
2 # see travis-ci.org for details
3
4 language: c
5
6 # Use the faster container-based infrastructure.
7 sudo: false
8
9 matrix:
10 include:
11 - os: linux
12 compiler: gcc
13 addons:
14 apt:
15 sources: ['ubuntu-toolchain-r-test']
16 packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
17 env: COMPILER=gcc-4.8
18
19 - os: linux
20 compiler: gcc
21 addons:
22 apt:
23 sources: ['ubuntu-toolchain-r-test']
24 packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
25 env: COMPILER=gcc-4.9
26
27 - os: linux
28 compiler: gcc
29 addons:
30 apt:
31 sources: ['ubuntu-toolchain-r-test']
32 packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
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']
40 packages: ['clang-3.7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
41 env: COMPILER=clang-3.7
42
43 - os: osx
44 compiler: clang
45 env: COMPILER=clang LIBTOOLIZE=glibtoolize
46
47
48 osx_image: xcode7.3
49
50 cache:
51 apt:
52 ccache:
53
54 script:
55 - bash autogen.sh
56 - CC=$COMPILER ./configure --with-shared-sqlite
57 - make -j4
58 - make install