chore: skip linux only tests on non-linux platforms (#912)
This commit is contained in:
parent
73d021fb36
commit
9b87fa7050
|
@ -137,6 +137,7 @@ platform_transition_test(
|
|||
# only run this test on x86_64 platforms
|
||||
target_compatible_with = [
|
||||
"@platforms//cpu:x86_64",
|
||||
"@platforms//os:linux",
|
||||
],
|
||||
target_platform = "x86_64_linux",
|
||||
)
|
||||
|
@ -147,6 +148,7 @@ platform_transition_test(
|
|||
# only run this test on arm64 platforms
|
||||
target_compatible_with = [
|
||||
"@platforms//cpu:arm64",
|
||||
"@platforms//os:linux",
|
||||
],
|
||||
target_platform = "arm64_linux",
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue