Skip to content

Commit

Permalink
checks/default: filter known good
Browse files Browse the repository at this point in the history
  • Loading branch information
astro committed Jan 9, 2024
1 parent a80e126 commit 3c0f99d
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions checks/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ let
} ];
testing.enableTest = builtins.elem config.microvm.hypervisor [
# Hypervisors that support 9p
"qemu" "crosvm" "kvmtool"
"qemu" "kvmtool"
# "crosvm"
];
};
}) ];
Expand All @@ -64,12 +65,18 @@ let
# overlay volume
id = "overlay";
modules = [ ({ config, ... }: {
microvm.writableStoreOverlay = "/nix/.rw-store";
microvm.volumes = [ {
image = "nix-store-overlay.img";
mountPoint = config.microvm.writableStoreOverlay;
size = 128;
} ];
microvm = {
writableStoreOverlay = "/nix/.rw-store";
volumes = [ {
image = "nix-store-overlay.img";
mountPoint = config.microvm.writableStoreOverlay;
size = 128;
} ];
testing.enableTest = builtins.elem config.microvm.hypervisor [
# Known good
"qemu" "cloud-hypervisor" "firecracker"
];
};
}) ];
} ]
# boot.systemd
Expand All @@ -80,6 +87,7 @@ let
boot.initrd.systemd.enable = false;
} ];
} {
# yes
id = "systemd";
modules = [ {
boot.initrd.systemd.enable = true;
Expand Down

0 comments on commit 3c0f99d

Please sign in to comment.