metropolis/test/launch: convert :launch to a test

"bazel run" simply executes the binary outside the sandbox, so swtpm
and other dependencies from the sandbox sysroot won't be available.

If swtpm is installed on the host, running the _bin target still works,
but it's better to point contributors to something that works
out of the box.

This is a temporary workaround. Tests have timeouts and take the global
Bazel server lock. The correct solution is a static swtpm build
which can run outside the sandbox.

Change-Id: Icf7bf5cc44825df676d37a75ea9c1e135de14fef
Reviewed-on: https://review.monogon.dev/c/monogon/+/1078
Reviewed-by: Lorenz Brun <lorenz@monogon.tech>
Tested-by: Jenkins CI
diff --git a/BUILD b/BUILD
index 33181b0..06407d2 100644
--- a/BUILD
+++ b/BUILD
@@ -73,15 +73,21 @@
 )
 
 # Shortcut for launching a single Metropolis node instance in a VM.
-alias(
+test_suite(
     name = "launch",
-    actual = "//metropolis/test/launch/cli/launch",
+    tags = ["manual"],
+    tests = [
+        "//metropolis/test/launch/cli/launch",
+    ],
 )
 
 # Shortcut for launching a virtual network a Metropolis cluster consisting of two nodes.
-alias(
+test_suite(
     name = "launch-multi2",
-    actual = "//metropolis/test/launch/cli/launch-multi2",
+    tags = ["manual"],
+    tests = [
+        "//metropolis/test/launch/cli/launch-multi2",
+    ],
 )
 
 alias(