nixos/release-small: remove minimal installer ISOs
These take up 2 GiB every time anything in the minimal installer
changes, or up to 4 GiB per day. We already stopped building Amazon
images in 9426d90c67
. Meaningful
installer changes are rare enough, and the couple of days it takes
for them to trickle down to the large channel acceptable enough,
that this is mostly a waste of space.
This should buy enough slack to build `stdenv` on `staging` without
contributing to cache size growth.
This commit is contained in:
parent
182b7164cc
commit
862911fd22
@ -407,6 +407,9 @@
|
|||||||
|
|
||||||
- The NixOS installation media no longer support the ReiserFS or JFS file systems by default.
|
- The NixOS installation media no longer support the ReiserFS or JFS file systems by default.
|
||||||
|
|
||||||
|
- Minimal installer ISOs are no longer built on the small channel.
|
||||||
|
Please obtain installer images from the full release channels.
|
||||||
|
|
||||||
## Other Notable Changes {#sec-release-24.11-notable-changes}
|
## Other Notable Changes {#sec-release-24.11-notable-changes}
|
||||||
|
|
||||||
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
|
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
|
||||||
|
@ -86,6 +86,7 @@ in rec {
|
|||||||
# Upstream issue: https://gitlab.com/qemu-project/qemu/-/issues/2321
|
# Upstream issue: https://gitlab.com/qemu-project/qemu/-/issues/2321
|
||||||
# (onSystems ["x86_64-linux"] "nixos.tests.hibernate")
|
# (onSystems ["x86_64-linux"] "nixos.tests.hibernate")
|
||||||
(onFullSupported "nixos.tests.i3wm")
|
(onFullSupported "nixos.tests.i3wm")
|
||||||
|
(onSystems ["aarch64-linux"] "nixos.tests.installer.simpleUefiSystemdBoot")
|
||||||
(onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSimple")
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSimple")
|
||||||
(onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSubvolDefault")
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSubvolDefault")
|
||||||
(onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSubvolEscape")
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSubvolEscape")
|
||||||
|
@ -53,12 +53,8 @@ in rec {
|
|||||||
inherit (nixos'.tests.installer)
|
inherit (nixos'.tests.installer)
|
||||||
lvm
|
lvm
|
||||||
separateBoot
|
separateBoot
|
||||||
simple;
|
simple
|
||||||
};
|
simpleUefiSystemdBoot;
|
||||||
boot = {
|
|
||||||
inherit (nixos'.tests.boot)
|
|
||||||
biosCdrom
|
|
||||||
uefiCdrom;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -107,18 +103,16 @@ in rec {
|
|||||||
"nixpkgs.tarball"
|
"nixpkgs.tarball"
|
||||||
"nixpkgs.release-checks"
|
"nixpkgs.release-checks"
|
||||||
]
|
]
|
||||||
|
(onSystems [ "aarch64-linux" ] "nixos.tests.installer.simpleUefiSystemdBoot")
|
||||||
(map (onSystems [ "x86_64-linux" ]) [
|
(map (onSystems [ "x86_64-linux" ]) [
|
||||||
"nixos.tests.boot.biosCdrom"
|
|
||||||
"nixos.tests.installer.lvm"
|
"nixos.tests.installer.lvm"
|
||||||
"nixos.tests.installer.separateBoot"
|
"nixos.tests.installer.separateBoot"
|
||||||
"nixos.tests.installer.simple"
|
"nixos.tests.installer.simple"
|
||||||
])
|
])
|
||||||
(map onSupported [
|
(map onSupported [
|
||||||
"nixos.dummy"
|
"nixos.dummy"
|
||||||
"nixos.iso_minimal"
|
|
||||||
"nixos.manual"
|
"nixos.manual"
|
||||||
"nixos.tests.acme"
|
"nixos.tests.acme"
|
||||||
"nixos.tests.boot.uefiCdrom"
|
|
||||||
"nixos.tests.containers-imperative"
|
"nixos.tests.containers-imperative"
|
||||||
"nixos.tests.containers-ip"
|
"nixos.tests.containers-ip"
|
||||||
"nixos.tests.firewall"
|
"nixos.tests.firewall"
|
||||||
|
Loading…
Reference in New Issue
Block a user