solanum/.travis.yml

62 lines
1.2 KiB
YAML
Raw Normal View History

2016-02-09 23:00:30 +00:00
# Travis-CI Build for charybdis
# see travis-ci.org for details
language: c
# Use the faster container-based infrastructure.
sudo: false
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
2016-03-05 23:47:48 +00:00
packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool']
2016-02-09 23:00:30 +00:00
env: COMPILER=gcc-4.8
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
2016-03-05 23:47:48 +00:00
packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool']
2016-02-09 23:00:30 +00:00
env: COMPILER=gcc-4.9
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
2016-03-05 23:47:48 +00:00
packages: ['gcc-5', 'automake', 'autoconf', 'libtool']
2016-02-09 23:00:30 +00:00
env: COMPILER=gcc-5
- os: linux
compiler: clang
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
2016-03-05 23:47:48 +00:00
packages: ['clang-3.7', 'automake', 'autoconf', 'libtool']
2016-02-09 23:00:30 +00:00
env: COMPILER=clang-3.7
- os: osx
compiler: clang
2016-03-05 23:47:48 +00:00
env: COMPILER=clang LIBTOOLIZE=glibtoolize
2016-02-09 23:00:30 +00:00
2016-03-10 17:32:46 +00:00
branches:
only:
- master
2016-02-09 23:00:30 +00:00
osx_image: xcode7.3
cache:
apt:
ccache:
script:
2016-03-05 23:47:48 +00:00
- bash autogen.sh
2016-02-09 23:00:30 +00:00
- CC=$COMPILER ./configure
- make -j4
- make install