Skip to content

Commit

Permalink
checks/default: disable systemd tests for crosvm and kvmtool
Browse files Browse the repository at this point in the history
  • Loading branch information
astro committed Jan 15, 2024
1 parent 3a7623d commit f15e276
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions checks/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,14 @@ let
} {
# yes
id = "systemd";
modules = [ {
modules = [ ({ config, ... }: {
boot.initrd.systemd.enable = true;
} ];
microvm.testing.enableTest = ! builtins.elem config.microvm.hypervisor [
# Known broken
"crosvm"
"kvmtool"
];
}) ];
} ]
];

Expand Down

0 comments on commit f15e276

Please sign in to comment.