2017-06-27 18:11:16 +00:00
|
|
|
# Build matrix / environment variables are explained on:
|
|
|
|
# http://about.travis-ci.org/docs/user/build-configuration/
|
|
|
|
# This file can be validated on: http://lint.travis-ci.org/
|
|
|
|
|
|
|
|
sudo: false
|
|
|
|
dist: trusty
|
|
|
|
language: cpp
|
|
|
|
|
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
- clang
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
|
|
|
env:
|
|
|
|
- BUILD_TYPE=Debug
|
|
|
|
- BUILD_TYPE=RelWithDebInfo
|
|
|
|
|
2017-04-26 11:24:58 +00:00
|
|
|
matrix:
|
2017-06-27 18:11:16 +00:00
|
|
|
allow_failures:
|
|
|
|
- compiler: clang
|
|
|
|
env: BUILD_TYPE=RelWithDebInfo
|
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
2017-07-27 23:34:19 +00:00
|
|
|
# List of whitelisted in travis packages for ubuntu-trusty can be found here:
|
|
|
|
# https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-trusty
|
2017-06-27 18:11:16 +00:00
|
|
|
# List of whitelisted in travis apt-sources:
|
|
|
|
# https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- llvm-toolchain-trusty-4.0
|
|
|
|
packages:
|
|
|
|
- cmake
|
|
|
|
- gcc-6
|
|
|
|
- g++-6
|
|
|
|
- clang-4.0
|
|
|
|
|
|
|
|
install:
|
2018-01-04 22:26:40 +00:00
|
|
|
# Travis doesn't have a DSL for installing homebrew packages yet. Status tracked
|
|
|
|
# in https://github.com/travis-ci/travis-ci/issues/5377
|
|
|
|
# The Travis VM image for Mac already has a link at /usr/local/include/c++,
|
|
|
|
# causing Homebrew's gcc@6 installation to error out. This was reported to
|
|
|
|
# Homebrew maintainers at https://github.com/Homebrew/brew/issues/1742 and
|
|
|
|
# removing the link emerged as a workaround.
|
|
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
|
|
|
brew update;
|
|
|
|
if [ -L /usr/local/include/c++ ]; then rm /usr/local/include/c++; fi;
|
|
|
|
brew install gcc@6;
|
|
|
|
fi
|
2017-06-27 18:11:16 +00:00
|
|
|
# /usr/bin/gcc is stuck to old versions by on both Linux and OSX.
|
|
|
|
- if [ "$CXX" = "g++" ]; then export CXX="g++-6" CC="gcc-6"; fi
|
|
|
|
- echo ${CC}
|
|
|
|
- echo ${CXX}
|
|
|
|
- ${CXX} --version
|
2017-07-28 16:55:21 +00:00
|
|
|
- cmake --version
|
2017-06-27 18:11:16 +00:00
|
|
|
|
2017-07-27 23:34:19 +00:00
|
|
|
before_script:
|
|
|
|
- mkdir -p build && cd build
|
|
|
|
- cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE
|
|
|
|
- cmake --build .
|
|
|
|
- cd ..
|
|
|
|
|
2017-06-27 18:11:16 +00:00
|
|
|
script:
|
2017-07-28 16:55:21 +00:00
|
|
|
- build/snappy_unittest
|