From 74925b2ac11b66792005e356d446d8417920af59 Mon Sep 17 00:00:00 2001 From: Jason Macnak Date: Thu, 6 Aug 2026 08:33:18 -0700 Subject: [PATCH] Update bazel release url Per https://github.com/bazelbuild/bazel/issues/30604 --- toolchain/bazel/install_bazel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/bazel/install_bazel.sh b/toolchain/bazel/install_bazel.sh index 13a80cef0..8028388a8 100755 --- a/toolchain/bazel/install_bazel.sh +++ b/toolchain/bazel/install_bazel.sh @@ -21,7 +21,7 @@ set -e function install_bazel_x86_64() { echo "Installing bazel" apt install apt-transport-https curl gnupg -y - curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg + curl -fsSL https://releases.bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg mv bazel-archive-keyring.gpg /usr/share/keyrings echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list # bazel needs the zip command to gather test outputs but doesn't depend on it