Skip to content

Commit 164bb3f

Browse files
committed
build: disable RBE for compliance partial goldens (angular#60473)
We've seen these tests regularly, but somewhat rarely to be stuck/hanging in the remote execution workers. Since the issue was reproducable locally (via local RBE environment), we can improve stability for the team until we resolve this with the RBE team. PR Close angular#60473
1 parent f901a4c commit 164bb3f

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

packages/compiler-cli/test/compliance/partial/partial_compliance_goldens.bzl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,16 @@ def partial_compliance_golden(filePath):
4242
# and is less prone to race conditions when targets build concurrently.
4343
args = ["--nobazel_run_linker", "$@"],
4444
visibility = [":__pkg__"],
45+
# TODO(devversion): re-enable when we figure out the RBE hanging process issue.
46+
tags = ["no-remote-exec"],
4547
data = [],
4648
)
4749

4850
generated_file_test(
4951
visibility = ["//visibility:public"],
5052
name = "%s.golden" % path,
5153
src = "//packages/compiler-cli/test/compliance/test_cases:%s/GOLDEN_PARTIAL.js" % path,
54+
# TODO(devversion): re-enable when we figure out the RBE hanging process issue.
55+
tags = ["no-remote-exec"],
5256
generated = "_generated_%s" % path,
5357
)

0 commit comments

Comments
 (0)