mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
nixosTests.incus: add test with old and new init
This commit is contained in:
parent
39b4c0d686
commit
c607e70f70
@ -1,11 +1,11 @@
|
|||||||
import ../make-test-python.nix ({ pkgs, lib, ... } :
|
import ../make-test-python.nix ({ pkgs, lib, extra ? {}, ... } :
|
||||||
|
|
||||||
let
|
let
|
||||||
releases = import ../../release.nix {
|
releases = import ../../release.nix {
|
||||||
configuration = {
|
configuration = {
|
||||||
# Building documentation makes the test unnecessarily take a longer time:
|
# Building documentation makes the test unnecessarily take a longer time:
|
||||||
documentation.enable = lib.mkForce false;
|
documentation.enable = lib.mkForce false;
|
||||||
};
|
} // extra;
|
||||||
};
|
};
|
||||||
|
|
||||||
container-image-metadata = releases.lxdContainerMeta.${pkgs.stdenv.hostPlatform.system};
|
container-image-metadata = releases.lxdContainerMeta.${pkgs.stdenv.hostPlatform.system};
|
||||||
|
@ -5,7 +5,11 @@
|
|||||||
handleTestOn,
|
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; };
|
lxd-to-incus = import ./lxd-to-incus.nix { inherit system pkgs; };
|
||||||
preseed = import ./preseed.nix { inherit system pkgs; };
|
preseed = import ./preseed.nix { inherit system pkgs; };
|
||||||
socket-activated = import ./socket-activated.nix { inherit system pkgs; };
|
socket-activated = import ./socket-activated.nix { inherit system pkgs; };
|
||||||
|
Loading…
Reference in New Issue
Block a user