| load("@io_bazel_rules_go//go:def.bzl", "go_test") |
| |
| go_test( |
| name = "ha_test", |
| srcs = ["run_test.go"], |
| data = [ |
| "//metropolis/node:image", |
| "//metropolis/node:swtpm_data", |
| "//metropolis/test/e2e:testimages_manifest", |
| "//third_party/edk2:firmware", |
| ], |
| tags = [ |
| "resources:iops:5000", |
| "resources:cpu:3", |
| # 3x2048 for nodes plus some extra. |
| "resources:ram:7000", |
| ], |
| deps = [ |
| "//metropolis/pkg/localregistry", |
| "//metropolis/test/launch", |
| "//metropolis/test/launch/cluster", |
| "//metropolis/test/util", |
| "@io_bazel_rules_go//go/runfiles:go_default_library", |
| ], |
| ) |