| Serge Bazanski | 99b0214 | 2024-04-17 16:33:28 +0200 | [diff] [blame] | 1 | load("@io_bazel_rules_go//go:def.bzl", "go_test") |
| 2 | |
| 3 | go_test( |
| 4 | name = "ha_test", |
| 5 | srcs = ["run_test.go"], |
| 6 | data = [ |
| 7 | "//metropolis/node:image", |
| Serge Bazanski | 99b0214 | 2024-04-17 16:33:28 +0200 | [diff] [blame] | 8 | "//metropolis/test/e2e:testimages_manifest", |
| 9 | "//third_party/edk2:firmware", |
| 10 | ], |
| 11 | tags = [ |
| 12 | "resources:iops:5000", |
| 13 | "resources:cpu:3", |
| 14 | # 3x2048 for nodes plus some extra. |
| 15 | "resources:ram:7000", |
| 16 | ], |
| 17 | deps = [ |
| 18 | "//metropolis/pkg/localregistry", |
| 19 | "//metropolis/test/launch", |
| 20 | "//metropolis/test/launch/cluster", |
| 21 | "//metropolis/test/util", |
| 22 | "@io_bazel_rules_go//go/runfiles:go_default_library", |
| 23 | ], |
| 24 | ) |