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;
|
2024-05-09 10:03:07 -04:00
|
|
|
};
|
2023-10-20 00:10:59 -04:00
|
|
|
}
|