Skip to content

Commit

Permalink
skip cst on non-linux os
Browse files Browse the repository at this point in the history
  • Loading branch information
thesayyn committed Sep 5, 2024
1 parent 5aa2418 commit 31099d6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions e2e/smoke/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,8 @@ container_structure_test(
"@platforms//cpu:x86_64": ["test_linux_amd64.yaml"],
}),
image = ":apt",
target_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:linux",
],
)
4 changes: 4 additions & 0 deletions examples/debian_shared_dependencies/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,8 @@ container_structure_test(
"@platforms//cpu:x86_64": ["test_linux_amd64.yaml"],
}),
image = ":apt",
target_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:linux",
],
)
4 changes: 4 additions & 0 deletions examples/debian_snapshot/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,8 @@ container_structure_test(
"@platforms//cpu:x86_64": ["test_linux_amd64.yaml"],
}),
image = ":apt",
target_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:linux",
],
)
4 changes: 4 additions & 0 deletions examples/ubuntu_snapshot/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,8 @@ container_structure_test(
"@platforms//cpu:x86_64": ["test_linux_amd64.yaml"],
}),
image = ":noble",
target_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:linux",
],
)

0 comments on commit 31099d6

Please sign in to comment.