blob: fa03d66b7d72575bbf8e72489b417b97e549318c [file] [log] [blame]
Lorenz Brunaadeb792023-03-27 15:53:56 +02001load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "e2e_test",
5 srcs = ["main_test.go"],
6 data = [
7 "//cloud/agent:initramfs",
8 "//metropolis/installer/test/testos:testos_bundle",
9 "//third_party/edk2:firmware",
10 "//third_party/linux",
11 ],
12 deps = [
13 "//cloud/agent/api",
14 "//cloud/bmaas/server/api",
15 "//metropolis/cli/pkg/datafile",
16 "//metropolis/pkg/pki",
17 "//metropolis/proto/api",
18 "@com_github_cavaliergopher_cpio//:cpio",
Lorenz Brun62f1d362023-11-14 16:18:24 +010019 "@com_github_klauspost_compress//zstd",
Lorenz Brunaadeb792023-03-27 15:53:56 +020020 "@org_golang_google_grpc//:go_default_library",
21 "@org_golang_google_grpc//credentials",
22 "@org_golang_google_protobuf//proto",
23 "@org_golang_x_sys//unix",
24 ],
25)