Skip to content

Commit bf22e9d

Browse files
committed
checks/default: disable systemd tests for crosvm and kvmtool
1 parent 28a2fde commit bf22e9d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

checks/default.nix

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,14 @@ let
114114
} {
115115
# yes
116116
id = "systemd";
117-
modules = [ {
117+
modules = [ ({ config, ... }: {
118118
boot.initrd.systemd.enable = true;
119-
} ];
119+
microvm.testing.enableTest = ! builtins.elem config.microvm.hypervisor [
120+
# Known broken
121+
"crosvm"
122+
"kvmtool"
123+
];
124+
}) ];
120125
} ]
121126
# hardened profile
122127
[ {

0 commit comments

Comments
 (0)