0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-19 08:31:01 +03:00
nixpkgs/nixos/tests/incus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
818 B
Nix
Raw Normal View History

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