Exclude intentionally broken build target from GH CI

BEGIN_PUBLIC

Exclude intentionally broken build target from GH CI

Gets GitHub CI passing again.

END_PUBLIC

PiperOrigin-RevId: 687335065
Change-Id: Icb3d9d1f7b6ccfd1e19c9174ad3481ecc2dfcc7f
This commit is contained in:
Googler 2024-10-18 09:46:06 -07:00 committed by Copybara-Service
parent ba3ec91a55
commit 9e3e907560
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ build_targets: &build_targets
- "//examples/..." - "//examples/..."
- "//tests/..." - "//tests/..."
- "-//examples/custom_toolchain:legacy_selector" # Example only works on Linux - "-//examples/custom_toolchain:legacy_selector" # Example only works on Linux
- "-//tests/rule_based_toolchain/tool_map:_duplicate_tool_test_subject" # Intentionally broken rule.
test_targets: &test_targets test_targets: &test_targets
- "//:all" - "//:all"
- "//cc/..." - "//cc/..."
@ -20,6 +21,7 @@ build_targets_bazel_6: &build_targets_bazel_6
- "-//examples/custom_toolchain:legacy_selector" # Example only works on Linux - "-//examples/custom_toolchain:legacy_selector" # Example only works on Linux
- "-//tests/rule_based_toolchain/..." # proto.encode_text doesn't support None - "-//tests/rule_based_toolchain/..." # proto.encode_text doesn't support None
- "-//cc:optional_current_cc_toolchain" # Not supported in Bazel 6 - "-//cc:optional_current_cc_toolchain" # Not supported in Bazel 6
- "-//tests/rule_based_toolchain/tool_map:_duplicate_tool_test_subject" # Intentionally broken rule.
test_targets_bazel_6: &test_targets_bazel_6 test_targets_bazel_6: &test_targets_bazel_6
- "//:all" - "//:all"
- "//cc:all" - "//cc:all"