Skip to content

Commit 058ee5c

Browse files
authored
fix: Add missing select in Bazel BUILD (#2966)
1 parent 3323156 commit 058ee5c

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

tests/core/conversion/converters/BUILD

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ config_setting(
77
},
88
)
99

10+
config_setting(
11+
name = "windows",
12+
constraint_values = [
13+
"@platforms//os:windows",
14+
],
15+
)
16+
1017
converter_test(
1118
name = "test_activation",
1219
)

tests/core/conversion/evaluators/BUILD

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ config_setting(
77
},
88
)
99

10+
config_setting(
11+
name = "windows",
12+
constraint_values = [
13+
"@platforms//os:windows",
14+
],
15+
)
16+
1017
evaluator_test(
1118
name = "test_prim_evaluators",
1219
)

tests/core/runtime/BUILD

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ config_setting(
99
},
1010
)
1111

12+
config_setting(
13+
name = "windows",
14+
constraint_values = [
15+
"@platforms//os:windows",
16+
],
17+
)
18+
1219
runtime_test(
1320
name = "test_multi_device_safe_mode",
1421
)

0 commit comments

Comments
 (0)