Remove protobuf prerequisites again

This commit is contained in:
Eric Fischer 2016-04-26 13:50:08 -07:00
parent a9a14b33e0
commit 33f9d91a4c

View File

@ -10,20 +10,19 @@ matrix:
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: [ 'g++-4.9', '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' ]
packages: [ 'clang-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";