From 8acc9cf8ac8b6739d80c6b408e26478232fce052 Mon Sep 17 00:00:00 2001 From: Florian Weikert Date: Thu, 5 Sep 2024 18:39:07 +0200 Subject: [PATCH] Fix untrusted build cache (#2033) --- buildkite/bazelci.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/buildkite/bazelci.py b/buildkite/bazelci.py index c37c62f95a..90a25727f6 100755 --- a/buildkite/bazelci.py +++ b/buildkite/bazelci.py @@ -1903,8 +1903,7 @@ def remote_caching_flags(platform, accept_cached=True): # Use RBE for caching builds running on GCE. remote_cache_flags = [] if is_mac(): - # unStrusted -> Yes, the untrusted bucket name contains a typo :( - bucket_id = "trusted" if THIS_IS_TRUSTED else "unstrusted" + bucket_id = "trusted" if THIS_IS_TRUSTED else "untrusted" remote_cache_flags = [ f"--remote_cache=https://storage.googleapis.com/bazel-{bucket_id}-build-cache" ]