From fbd75106efb02669ce8d4443b702f91723422f27 Mon Sep 17 00:00:00 2001 From: Malte Poll <1780588+malt3@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:48:06 +0200 Subject: [PATCH] bazel: never run buildifier in remote execution (#2261) --- bazel/ci/BUILD.bazel | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bazel/ci/BUILD.bazel b/bazel/ci/BUILD.bazel index 929517425..25bbc5fd1 100644 --- a/bazel/ci/BUILD.bazel +++ b/bazel/ci/BUILD.bazel @@ -40,6 +40,7 @@ buildifier_test( lint_warnings = ["all"], mode = "diff", no_sandbox = True, + tags = ["no-remote-exec"], verbose = True, workspace = "//:WORKSPACE.bazel", ) @@ -49,6 +50,7 @@ buildifier( lint_mode = "fix", lint_warnings = ["all"], mode = "fix", + tags = ["no-remote-exec"], verbose = True, )