zfs: installer tests are x86 only

This commit is contained in:
Adam C. Stephens
2025-06-12 20:42:00 -04:00
parent 5a745565dc
commit 06743bb459
2 changed files with 16 additions and 6 deletions
+8 -3
View File
@@ -2,6 +2,7 @@
callPackage,
lib,
nixosTests,
stdenv,
...
}@args:
@@ -15,9 +16,13 @@ callPackage ./generic.nix args {
# this package should point to the latest release.
version = "2.2.8";
tests = {
inherit (nixosTests.zfs) installer series_2_2;
};
tests =
{
inherit (nixosTests.zfs) series_2_2;
}
// lib.optionalAttrs stdenv.isx86_64 {
inherit (nixosTests.zfs) installer;
};
maintainers = with lib.maintainers; [
adamcstephens
+8 -3
View File
@@ -2,6 +2,7 @@
callPackage,
lib,
nixosTests,
stdenv,
...
}@args:
@@ -15,9 +16,13 @@ callPackage ./generic.nix args {
# this package should point to the latest release.
version = "2.3.2";
tests = {
inherit (nixosTests.zfs) installer series_2_3;
};
tests =
{
inherit (nixosTests.zfs) series_2_3;
}
// lib.optionalAttrs stdenv.isx86_64 {
inherit (nixosTests.zfs) installer;
};
maintainers = with lib.maintainers; [
adamcstephens