.travis.yml: fetch the protobuf tarball from GitHub instead of Google Code

Per the protobuf developers,

    We will from everything away from Google Code eventually. We haven't
    decided where to put future release packages yet but as it seems github
    supports this well chances are we'll use github as the canonical location
    for all downloads.
This commit is contained in:
Robert Edmonds 2014-09-05 17:18:18 -04:00
parent 51b8da1589
commit faf6244ef5

View File

@ -15,7 +15,7 @@ before_install:
install:
- sudo apt-get -q install valgrind lcov
- sudo pip install cpp-coveralls
- wget https://protobuf.googlecode.com/svn/rc/protobuf-$PROTOBUF_VERSION.tar.gz
- wget https://github.com/google/protobuf/releases/download/v$PROTOBUF_VERSION/protobuf-$PROTOBUF_VERSION.tar.gz
- tar xf protobuf-$PROTOBUF_VERSION.tar.gz
- ( cd protobuf-$PROTOBUF_VERSION && ./configure && make -j2 && sudo make install && sudo ldconfig )