From faf6244ef5343cf709a12647ac4d5cb3103a7868 Mon Sep 17 00:00:00 2001 From: Robert Edmonds Date: Fri, 5 Sep 2014 17:18:18 -0400 Subject: [PATCH] .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. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c5891c6..6a74590 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 )