From 91ff7dabaf8ce850b51071ebe48cb75b448d53fd Mon Sep 17 00:00:00 2001 From: Dan Liew Date: Thu, 1 Sep 2016 23:08:24 +0100 Subject: Try to unbreak the TravisCI and Docker builds. GTest has moved from googlecode to GitHub so update URL and directory name used in source archive as appropriate. --- .travis/testing-utils.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis/testing-utils.sh b/.travis/testing-utils.sh index 27bd420d..b2f608db 100755 --- a/.travis/testing-utils.sh +++ b/.travis/testing-utils.sh @@ -4,9 +4,9 @@ set -e if [ "${LLVM_VERSION}" != "2.9" ]; then # Using LLVM3.4 all we need is vanilla GoogleTest :) - wget https://googletest.googlecode.com/files/gtest-1.7.0.zip - unzip gtest-1.7.0.zip - cd gtest-1.7.0/ + wget https://github.com/google/googletest/archive/release-1.7.0.zip + unzip release-1.7.0.zip + cd googletest-release-1.7.0/ cmake . make # Normally I wouldn't do something like this but hey we're running on a temporary virtual machine, so who cares? -- cgit 1.4.1