Skip to content

Commit b2242d2

Browse files
committed
Exclude vendored workspace check on Windows
1 parent 222f339 commit b2242d2

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

test/BUILD.bazel

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,10 @@ genrule(
186186
grep '//vendored_workspace_dep/mylib:mylib' $(location :vendored_workspace_dep_itoa_deps)
187187
echo ok > $@
188188
""",
189+
target_compatible_with = select({
190+
"@platforms//os:windows": ["@platforms//:incompatible"],
191+
"//conditions:default": [],
192+
}),
189193
)
190194

191195
verify_alias(
@@ -314,7 +318,6 @@ filegroup(
314318
":verify_single_crate_dep_data_key",
315319
":verify_target_workspace_dep_feature_dep_absent",
316320
":verify_target_workspace_dep_feature_feature_absent",
317-
":verify_vendored_workspace_dep",
318321
":verify_workspace_default_features_default_present",
319322
":verify_workspace_default_features_dep_present",
320323
":verify_workspace_default_features_subfeature_present",
@@ -331,6 +334,7 @@ filegroup(
331334
":verify_cfg_feature_target_dep",
332335
":verify_first_party_feature_propagation",
333336
":verify_rust_analyzer_toolchain",
337+
":verify_vendored_workspace_dep",
334338
":verify_workspace_member_annotation_features",
335339
],
336340
}),

0 commit comments

Comments
 (0)