whoops, libprotobuf is still required a bit (for now)

This commit is contained in:
Dane Springmeyer 2016-04-26 12:48:32 -07:00
parent c4a13fc6e0
commit 3570d93434

View File

@ -9,20 +9,21 @@ matrix:
env: COVERAGE=gcov-4.9 CC="gcc-4.9" CXX="g++-4.9"
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
sources: ['ubuntu-toolchain-r-test', 'protobuf-compiler', 'libprotobuf-dev']
packages: [ 'g++-4.9' ]
- os: linux
compiler: clang
env: CC="clang-3.5" CXX="clang++-3.5"
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.5' ]
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.5', 'protobuf-compiler', 'libprotobuf-dev' ]
packages: [ 'clang-3.5' ]
- os: osx
compiler: clang
install:
- if [[ $(uname -s) == 'Darwin' ]]; then brew install protobuf; fi;
- if [ -n "${COVERAGE}" ]; then
export CXXFLAGS="--coverage -g";
export CFLAGS="--coverage -g";