about summary refs log tree commit diff
path: root/nixos/tests/lxd
diff options
context:
space:
mode:
authorAdam Stephens <adam@valkor.net>2023-09-04 15:19:34 -0400
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-09-05 15:28:00 +0000
commitc811cf643f19b8067dcbf16d05987c439e8961b4 (patch)
tree9cb714972caf8d44ff32c115d0dbfeaca875a5b1 /nixos/tests/lxd
parenta90385c62b75df48f3ebd29f99d017f06966c569 (diff)
nixos/tests/lxd: disable virtual-machine test on aarch64
Diffstat (limited to 'nixos/tests/lxd')
-rw-r--r--nixos/tests/lxd/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/tests/lxd/default.nix b/nixos/tests/lxd/default.nix
index e63e199aca904..20afdd5e48bbe 100644
--- a/nixos/tests/lxd/default.nix
+++ b/nixos/tests/lxd/default.nix
@@ -2,10 +2,11 @@
   system ? builtins.currentSystem,
   config ? {},
   pkgs ? import ../../.. {inherit system config;},
+  handleTestOn,
 }: {
   container = import ./container.nix {inherit system pkgs;};
   nftables = import ./nftables.nix {inherit system pkgs;};
   preseed = import ./preseed.nix {inherit system pkgs;};
   ui = import ./ui.nix {inherit system pkgs;};
-  virtual-machine = import ./virtual-machine.nix { inherit system pkgs; };
+  virtual-machine = handleTestOn ["x86_64-linux"] ./virtual-machine.nix { inherit system pkgs; };
 }