Skip to content

Commit

Permalink
fix: Add missing select in Bazel BUILD (#2966)
Browse files Browse the repository at this point in the history
  • Loading branch information
gs-olive authored Jun 29, 2024
1 parent 3323156 commit 058ee5c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/core/conversion/converters/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ config_setting(
},
)

config_setting(
name = "windows",
constraint_values = [
"@platforms//os:windows",
],
)

converter_test(
name = "test_activation",
)
Expand Down
7 changes: 7 additions & 0 deletions tests/core/conversion/evaluators/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ config_setting(
},
)

config_setting(
name = "windows",
constraint_values = [
"@platforms//os:windows",
],
)

evaluator_test(
name = "test_prim_evaluators",
)
Expand Down
7 changes: 7 additions & 0 deletions tests/core/runtime/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ config_setting(
},
)

config_setting(
name = "windows",
constraint_values = [
"@platforms//os:windows",
],
)

runtime_test(
name = "test_multi_device_safe_mode",
)
Expand Down

0 comments on commit 058ee5c

Please sign in to comment.