Merge pull request #368 from protobuf-c/edmonds/travis/protobuf-3.7.1

.travis.yml: Bump protobuf version to 3.7.1, use new URL
This commit is contained in:
Robert Edmonds 2019-04-10 20:46:27 -04:00 committed by GitHub
commit 8a362db917
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,12 +13,12 @@ addons:
env:
global:
- PROTOBUF_VERSION=3.6.1
- PROTOBUF_VERSION=3.7.1
- PKG_CONFIG_PATH=$HOME/protobuf-$PROTOBUF_VERSION-bin/lib/pkgconfig
install:
- pip install --user cpp-coveralls
- wget https://github.com/google/protobuf/archive/v$PROTOBUF_VERSION.tar.gz
- wget https://github.com/protocolbuffers/protobuf/archive/v$PROTOBUF_VERSION.tar.gz
- tar xf v$PROTOBUF_VERSION.tar.gz
- ( cd protobuf-$PROTOBUF_VERSION && ./autogen.sh && ./configure --prefix=$HOME/protobuf-$PROTOBUF_VERSION-bin && make -j2 && make install )