1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 16:39:31 +03:00
nixpkgs/nixos/tests/incus/default.nix

43 lines
580 B
Nix
Raw Normal View History

2023-10-20 00:10:59 -04:00
{
2024-12-13 08:58:09 -05:00
lts ? true,
...
2023-10-20 00:10:59 -04:00
}:
2024-12-13 08:58:09 -05:00
let
incusTest = import ./incus-tests.nix;
in
2023-10-20 00:10:59 -04:00
{
2024-12-13 08:58:09 -05:00
all = incusTest {
inherit lts;
allTests = true;
2024-03-18 23:02:30 -04:00
};
2024-12-13 08:58:09 -05:00
container = incusTest {
inherit lts;
instanceContainer = true;
2024-03-18 23:02:30 -04:00
};
2024-12-13 08:58:09 -05:00
lvm = incusTest {
inherit lts;
storageLvm = true;
};
lxd-to-incus = import ./lxd-to-incus.nix { };
openvswitch = incusTest {
inherit lts;
networkOvs = true;
};
ui = import ./ui.nix { };
virtual-machine = incusTest {
inherit lts;
instanceVm = true;
};
zfs = incusTest {
inherit lts;
storageLvm = true;
};
2023-10-20 00:10:59 -04:00
}