Skip to content

Commit

Permalink
Fix untrusted build cache (#2033)
Browse files Browse the repository at this point in the history
  • Loading branch information
fweikert authored Sep 5, 2024
1 parent 3614ce0 commit 8acc9cf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions buildkite/bazelci.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
Expand Down

0 comments on commit 8acc9cf

Please sign in to comment.