nixosTests.incus: add test with old and new init

This commit is contained in:
Maciej Krüger 2024-02-20 23:42:59 +01:00
parent 39b4c0d686
commit c607e70f70
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F
2 changed files with 7 additions and 3 deletions

View File

@ -1,11 +1,11 @@
import ../make-test-python.nix ({ pkgs, lib, ... } :
import ../make-test-python.nix ({ pkgs, lib, extra ? {}, ... } :
let
releases = import ../../release.nix {
configuration = {
# Building documentation makes the test unnecessarily take a longer time:
documentation.enable = lib.mkForce false;
};
} // extra;
};
container-image-metadata = releases.lxdContainerMeta.${pkgs.stdenv.hostPlatform.system};

View File

@ -5,7 +5,11 @@
handleTestOn,
}:
{
container = import ./container.nix { inherit system pkgs; };
container-old-init = import ./container.nix { inherit system pkgs; };
container-new-init = import ./container.nix { inherit system pkgs; extra = {
# Enable new systemd init
boot.initrd.systemd.enable = true;
}; };
lxd-to-incus = import ./lxd-to-incus.nix { inherit system pkgs; };
preseed = import ./preseed.nix { inherit system pkgs; };
socket-activated = import ./socket-activated.nix { inherit system pkgs; };