2013-05-09 00:04:57 +02:00
|
|
|
# Build matrix / environment variable are explained on:
|
|
|
|
# http://about.travis-ci.org/docs/user/build-configuration/
|
2013-05-09 00:15:15 +02:00
|
|
|
# This file can be validated on:
|
|
|
|
# http://lint.travis-ci.org/
|
2015-07-11 21:06:18 +02: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-23 04:43:27 +02:00
|
|
|
|
2015-07-11 21:06:18 +02:00
|
|
|
install:
|
2015-07-11 21:27:19 +02:00
|
|
|
# /usr/bin/gcc is 4.6 always, but gcc-X.Y is available.
|
|
|
|
#- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
|
|
|
|
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.6" CC="gcc-4.6"; fi
|
|
|
|
# /usr/bin/clang is our version already, and clang-X.Y does not exist.
|
2015-07-12 21:56:36 +02:00
|
|
|
#- if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.0" CC="clang-3.0"; fi
|
2015-07-11 21:27:19 +02:00
|
|
|
- echo ${PATH}
|
|
|
|
- ls /usr/local
|
|
|
|
- export PATH=/usr/bin:${PATH}
|
|
|
|
- echo ${CXX}
|
|
|
|
- ${CXX} --version
|
2015-07-11 21:06:18 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
2015-07-11 21:27:19 +02:00
|
|
|
- gcc-4.6
|
|
|
|
- g++-4.6
|
2015-07-12 21:56:36 +02:00
|
|
|
- clang
|
2015-07-11 21:09:52 +02:00
|
|
|
- valgrind
|
2015-04-23 04:43:27 +02:00
|
|
|
os:
|
|
|
|
- linux
|
2013-05-08 22:46:56 +02:00
|
|
|
language: cpp
|
2013-05-08 23:04:42 +02:00
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
- clang
|
2015-04-23 04:43:27 +02:00
|
|
|
script: ./travis.sh
|
2013-05-09 00:04:57 +02:00
|
|
|
env:
|
|
|
|
matrix:
|
2015-02-07 19:18:20 +01: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 23:23:52 +02:00
|
|
|
notifications:
|
2015-07-12 16:53:40 +02:00
|
|
|
email: false
|
2015-07-11 21:06:18 +02:00
|
|
|
sudo: false
|