From 2331ab39e62f6d8bc62b377a600621fa208019f1 Mon Sep 17 00:00:00 2001 From: Xander McCarthy <19922103+CodingCanuck@users.noreply.github.com> Date: Fri, 15 Apr 2022 10:49:31 -1000 Subject: [PATCH] Upgrade to bazel 5.1.1 (#332) The [5.1.1 release](https://github.com/bazelbuild/bazel/releases/tag/5.1.1) includes a [fix for remote action failure errors being lost](https://github.com/bazelbuild/bazel/pull/15181) that could de-mystify some of our remote build experiments. --- .bazeliskrc | 2 +- Dockerfile.dazel | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bazeliskrc b/.bazeliskrc index 189cedf3..2f3eb9a3 100644 --- a/.bazeliskrc +++ b/.bazeliskrc @@ -1 +1 @@ -USE_BAZEL_VERSION=5.1.0 +USE_BAZEL_VERSION=5.1.1 diff --git a/Dockerfile.dazel b/Dockerfile.dazel index a5ce7077..5dff5d60 100644 --- a/Dockerfile.dazel +++ b/Dockerfile.dazel @@ -10,7 +10,7 @@ # TODO(benh): update to Python 3.10. FROM python:3.9-slim-bullseye -ARG BAZEL_VERSION=5.1.0 +ARG BAZEL_VERSION=5.1.1 ARG CLANG_VERSION=14 # Install generic dependencies.