From 63d9c1fb95d95158493a119579d5c537a7cfdef1 Mon Sep 17 00:00:00 2001 From: Adam Cozzette Date: Fri, 19 Jul 2019 12:55:58 -0700 Subject: [PATCH] Updated Bazel test script to use most recent Bazel version (#6413) I'm not exactly sure why, but this fixes the failing Bazel presubmit test. Using the most recent version seems like a good idea anyway so that we can make sure we're compatible with any new Bazel changes. --- kokoro/linux/bazel/build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kokoro/linux/bazel/build.sh b/kokoro/linux/bazel/build.sh index 6b55ab1a47..a49e855c4a 100755 --- a/kokoro/linux/bazel/build.sh +++ b/kokoro/linux/bazel/build.sh @@ -3,6 +3,10 @@ # Build file to set up and run tests set -ex +# Install the latest Bazel version available +use_bazel.sh latest +bazel version + # Change to repo root cd $(dirname $0)/../../..