From 87e4708beeb33d5bf500243522ca5911113a9ae1 Mon Sep 17 00:00:00 2001 From: Aleksander Gondek Date: Sun, 14 Jun 2026 17:22:11 +0000 Subject: [PATCH] fix(bazelrc): running bazel info This changeset resolves the problem, where execution of `bazel info` command fails in the top-level repository. The issue occurs due to Bazel attempting to resolve the name of '@rules_variant' before it is available. Note: Usually such commit should not be of type 'fix', however it is a good opportunity to trigger a first open-source release. --- .bazelrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.bazelrc b/.bazelrc index c0db04e..f7c6ffe 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,6 +1,10 @@ import %workspace%/.bazelrc.d/base.bazelrc common --platforms=@rules_variant//platforms:host +# Ensure the bazel info will not fail +# (we cannot simplify to //platforms because .bazelrc +# is symlinked to examples atm) +info --platforms= # Ensure the protobuf is prefereing the prebuilts common --incompatible_enable_proto_toolchain_resolution