Skip to content

Commit

Permalink
Pin bazel=6.4.0 for Github tests while we resolve breakages due to 7.…
Browse files Browse the repository at this point in the history
…0.0 release.

PiperOrigin-RevId: 604475134
  • Loading branch information
emilyfertig authored and tensorflower-gardener committed Feb 6, 2024
1 parent eb29f6e commit c4e48fb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testing/run_github_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ set -u # fail and exit on any undefined variable reference
# Get the absolute path to the directory containing this script.
DIR=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)

# TODO(b/316225328): Remove this line and use the latest version of Bazel.
export USE_BAZEL_VERSION=6.4.0

# Make sure the environment variables are set.
if [ -z "${SHARD+x}" ]; then
echo "SHARD is unset."
Expand All @@ -47,7 +50,8 @@ install_bazel() {

# Update apt and install bazel (use -qq to minimize log cruft)
sudo apt-get update
sudo apt-get install bazel
# TODO(b/316225328): Use the latest version of Bazel.
sudo apt-get install bazel-6.4.0
}

install_python_packages() {
Expand Down

0 comments on commit c4e48fb

Please sign in to comment.