blob: c023ed4dbb854b99f0b6a7aadfd0c82058d605c6 [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"],
)