From 79eccfb0c181f965addd2bb23f46119a29f67996 Mon Sep 17 00:00:00 2001 From: FMJdev Date: Tue, 24 Sep 2024 04:52:49 +0200 Subject: [PATCH] build(bazel): update `workspace_status_command` Update the reference to the workspace status script to resolve via 'pwd' instead of static file paths. This was found as a potential solution to the latest MacOS CI errors in: https://github.com/bazelbuild/bazel/issues/14861 For the CI errors see: https://github.com/fmjstudios/gopskit/actions/runs/11006040154/job/30559675020 --- .bazelrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bazelrc b/.bazelrc index 48fc46a..2ecca16 100644 --- a/.bazelrc +++ b/.bazelrc @@ -21,7 +21,7 @@ # Enable Bzlmod for every Bazel command common --enable_bzlmod -build --workspace_status_command=./scripts/status.sh +build --workspace_status_command=$(pwd)/scripts/status.sh build --verbose_failures test --test_env=HOME \ No newline at end of file