blob: 8e8f18a9c63984ce3ba79931f5241ab8ea8ab550 [file] [log] [blame]
sh_library(
name = "vm_deps",
data = [
"//core:image",
"//core:swtpm_data",
"@edk2//:firmware",
],
)
sh_binary(
name = "launch",
srcs = ["launch.sh"],
deps = [":vm_deps"],
)
sh_library(
name = "test_deps",
data = [
":launch",
"//:kubectl",
],
)
sh_test(
name = "test_boot",
size = "small",
srcs = ["test_boot.sh"],
# expects wants a pty, which do not exist in the sandbox
tags = ["local"],
deps = [
":test_deps",
":vm_deps",
],
)