Commit 13b0e422 authored by Jörg Thalheim's avatar Jörg Thalheim
Browse files

nixos/tests/installer: disable zfs for bcachefs tests

we are potentially testing very new kernels here, which are not
supported by zfs yet.
parent dda48a50
Loading
Loading
Loading
Loading
+14 −2
Original line number Diff line number Diff line
@@ -465,8 +465,12 @@ let
    '';
    testSpecialisationConfig = true;
  };


  # disable zfs so we can support latest kernel if needed
  no-zfs-module = {
    nixpkgs.overlays = [(final: super: {
      zfs = super.zfs.overrideAttrs(_: {meta.platforms = [];});}
    )];
  };
in {

  # !!! `parted mkpart' seems to silently create overlapping partitions.
@@ -714,6 +718,7 @@ in {
  bcachefsSimple = makeInstallerTest "bcachefs-simple" {
    extraInstallerConfig = {
      boot.supportedFilesystems = [ "bcachefs" ];
      imports = [ no-zfs-module ];
    };

    createPartitions = ''
@@ -737,6 +742,10 @@ in {
  bcachefsEncrypted = makeInstallerTest "bcachefs-encrypted" {
    extraInstallerConfig = {
      boot.supportedFilesystems = [ "bcachefs" ];

      # disable zfs so we can support latest kernel if needed
      imports = [ no-zfs-module ];

      environment.systemPackages = with pkgs; [ keyutils ];
    };

@@ -769,6 +778,9 @@ in {
  bcachefsMulti = makeInstallerTest "bcachefs-multi" {
    extraInstallerConfig = {
      boot.supportedFilesystems = [ "bcachefs" ];

      # disable zfs so we can support latest kernel if needed
      imports = [ no-zfs-module ];
    };

    createPartitions = ''