Skip to content

Commit

Permalink
temporarily disable curl test on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre committed Oct 18, 2024
1 parent d4d515d commit d5b461e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions examples/crate_universe/multi_package/pkg_a/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ rust_library(
srcs = glob(["src/**/*.rs"]),
aliases = aliases(),
proc_macro_deps = all_crate_deps(proc_macro = True),
# TODO: https://github.com/bazelbuild/rules_rust/issues/2947
target_compatible_with = select({
"@platforms//os:linux": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = all_crate_deps(normal = True),
)

Expand All @@ -14,5 +19,10 @@ rust_test(
aliases = aliases(),
crate = ":pkg_a",
proc_macro_deps = all_crate_deps(proc_macro_dev = True),
# TODO: https://github.com/bazelbuild/rules_rust/issues/2947
target_compatible_with = select({
"@platforms//os:linux": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = all_crate_deps(normal_dev = True),
)

0 comments on commit d5b461e

Please sign in to comment.