2013-05-08 22:04:57 +00:00
|
|
|
# Build matrix / environment variable are explained on:
|
|
|
|
# http://about.travis-ci.org/docs/user/build-configuration/
|
2013-05-08 22:15:15 +00:00
|
|
|
# This file can be validated on:
|
|
|
|
# http://lint.travis-ci.org/
|
2015-07-11 14:06:18 -05:00
|
|
|
# See also
|
|
|
|
# http://stackoverflow.com/questions/22111549/travis-ci-with-clang-3-4-and-c11/30925448#30925448
|
|
|
|
# to allow C++11, though we are not yet building with -std=c++11
|
2015-04-22 19:43:27 -07:00
|
|
|
|
2015-07-11 14:06:18 -05:00
|
|
|
install:
|
|
|
|
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- gcc-4.8
|
|
|
|
- g++-4.8
|
|
|
|
- clang
|
2015-07-11 14:09:52 -05:00
|
|
|
- valgrind
|
2015-04-22 19:43:27 -07:00
|
|
|
os:
|
|
|
|
- linux
|
2013-05-08 20:46:56 +00:00
|
|
|
language: cpp
|
2013-05-08 21:04:42 +00:00
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
- clang
|
2015-04-22 19:43:27 -07:00
|
|
|
script: ./travis.sh
|
2013-05-08 22:04:57 +00:00
|
|
|
env:
|
|
|
|
matrix:
|
2015-02-07 12:18:20 -06:00
|
|
|
- SHARED_LIB=ON STATIC_LIB=ON CMAKE_PKG=ON BUILD_TYPE=release VERBOSE_MAKE=false
|
|
|
|
- SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=debug VERBOSE_MAKE=true VERBOSE
|
2013-05-08 21:23:52 +00:00
|
|
|
notifications:
|
|
|
|
email:
|
2014-06-30 19:57:59 +10:00
|
|
|
- aaronjjacobs@gmail.com
|
2015-07-11 14:06:18 -05:00
|
|
|
sudo: false
|