From 550a115dba28a5f46d1b7e608425b7a98e58988a Mon Sep 17 00:00:00 2001 From: Vinh Tran Date: Fri, 27 Oct 2023 15:08:28 +0000 Subject: [PATCH] Disable proto targets on windows --- .bazelci/presubmit.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index ed6fa57d14..8826fcb942 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -24,8 +24,10 @@ default_macos_targets: &default_macos_targets default_windows_targets: &default_windows_targets - "--" # Allows negative patterns; hack for https://github.com/bazelbuild/continuous-integration/pull/245 - "//..." - - "-//test/proto/..." - "-//test/unit/pipelined_compilation/..." + # The proto rules do not work on windows + - "-//proto/..." + - "-//test/proto/..." crate_universe_vendor_example_targets: &crate_universe_vendor_example_targets - "//vendor_external:crates_vendor" - "//vendor_local_manifests:crates_vendor"