Skip to content

Commit

Permalink
Replace --project_id with --bes_instance_name (#1789)
Browse files Browse the repository at this point in the history
The flag was renamed in bazelbuild/bazel#14507
  • Loading branch information
fweikert authored Nov 14, 2023
1 parent b0fc1cf commit 6bb0de8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildkite/bazelci.py
Original file line number Diff line number Diff line change
Expand Up @@ -1851,7 +1851,7 @@ def remote_caching_flags(platform, accept_cached=True):
# Enable BES / Build Results reporting.
"--bes_backend=buildeventservice.googleapis.com",
"--bes_timeout=360s",
"--project_id=bazel-untrusted",
"--bes_instance_name=bazel-untrusted",
]

platform_cache_digest = hashlib.sha256()
Expand Down Expand Up @@ -1963,7 +1963,7 @@ def rbe_flags(original_flags, accept_cached):
flags += [
"--bes_backend=buildeventservice.googleapis.com",
"--bes_timeout=360s",
"--project_id=bazel-untrusted",
"--bes_instance_name=bazel-untrusted",
]

if not accept_cached:
Expand Down

0 comments on commit 6bb0de8

Please sign in to comment.