diff options
author | Gennadiy Civil <misterg@google.com> | 2019-06-17 19:13:38 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2019-06-17 19:13:38 (GMT) |
commit | 919142f8a96bb37f10bcad1f45d77855faaa7d88 (patch) | |
tree | 67abc22fc2f5ce6101a980fc763373088570afbc | |
parent | 6c971ca9a34b3eb82180732db807da74ea71cf79 (diff) | |
download | googletest-919142f8a96bb37f10bcad1f45d77855faaa7d88.zip googletest-919142f8a96bb37f10bcad1f45d77855faaa7d88.tar.gz googletest-919142f8a96bb37f10bcad1f45d77855faaa7d88.tar.bz2 |
testing with bazel 0.26.1
-rwxr-xr-x | ci/install-linux.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/install-linux.sh b/ci/install-linux.sh index 05e2cb2..8058dbd 100755 --- a/ci/install-linux.sh +++ b/ci/install-linux.sh @@ -41,7 +41,8 @@ if [ "${TRAVIS_SUDO}" = "true" ]; then echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | \ sudo tee /etc/apt/sources.list.d/bazel.list curl https://bazel.build/bazel-release.pub.gpg | sudo apt-key add - - sudo apt-get update && sudo apt-get install -y bazel gcc-4.9 g++-4.9 clang-3.9 + sudo apt-get update && sudo apt-get install -y gcc-4.9 g++-4.9 clang-3.9 + sudo apt-get install bazel 0.26.1 elif [ "${CXX}" = "clang++" ]; then # Use ccache, assuming $HOME/bin is in the path, which is true in the Travis build environment. ln -sf /usr/bin/ccache $HOME/bin/${CXX}; |