mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
nixos/tests/installer: disable zfs for bcachefs tests
we are potentially testing very new kernels here, which are not supported by zfs yet.
This commit is contained in:
parent
dda48a5044
commit
13b0e42202
@ -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 = ''
|
||||
|
Loading…
Reference in New Issue
Block a user