Unverified Commit c607e70f authored by Maciej Krüger's avatar Maciej Krüger
Browse files

nixosTests.incus: add test with old and new init

parent 39b4c0d6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
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};
+5 −1
Original line number Diff line number Diff line
@@ -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; };