1 # This jobset is used to generate a NixOS channel that contains a
2 # small subset of Nixpkgs, mostly useful for servers that need fast
5 # Individual jobs can be tested by running:
7 # nix-build nixos/release-small.nix -A <jobname>
9 { nixpkgs ? { outPath = (import ../lib).cleanSource ./..; revCount = 56789; shortRev = "gfedcba"; }
10 , stableBranch ? false
11 , supportedSystems ? [ "aarch64-linux" "x86_64-linux" ] # no i686-linux
16 nixpkgsSrc = nixpkgs; # urgh
18 pkgs = import ./.. { system = "x86_64-linux"; };
22 nixos' = import ./release.nix {
23 inherit stableBranch supportedSystems;
27 nixpkgs' = builtins.removeAttrs (import ../pkgs/top-level/release.nix {
28 inherit supportedSystems;
35 inherit (nixos') channel manual options iso_minimal amazonImage dummy;
37 inherit (nixos'.tests)
49 predictable-interface-names
53 inherit (nixos'.tests.installer)
59 inherit (nixos'.tests.boot)
89 tests-stdenv-gcc-stageCompare;
93 onSupported = x: map (system: "${x}.${system}") supportedSystems;
94 onSystems = systems: x: map (system: "${x}.${system}")
95 (pkgs.lib.intersectLists systems supportedSystems);
96 in pkgs.releaseTools.aggregate {
97 name = "nixos-${nixos.channel.version}";
99 description = "Release-critical builds for the NixOS channel";
100 maintainers = [ lib.maintainers.eelco ];
102 constituents = lib.flatten [
107 (map (onSystems [ "x86_64-linux" ]) [
108 "nixos.tests.boot.biosCdrom"
109 "nixos.tests.installer.lvm"
110 "nixos.tests.installer.separateBoot"
111 "nixos.tests.installer.simple"
119 "nixos.tests.boot.uefiCdrom"
120 "nixos.tests.containers-imperative"
121 "nixos.tests.containers-ip"
122 "nixos.tests.firewall"
126 "nixos.tests.nat.firewall"
127 "nixos.tests.nat.standalone"
128 "nixos.tests.nfs3.simple"
129 "nixos.tests.openssh"
130 "nixos.tests.php.fpm"
131 "nixos.tests.php.pcre"
132 "nixos.tests.predictable-interface-names.predictable"
133 "nixos.tests.predictable-interface-names.predictableNetworkd"
134 "nixos.tests.predictable-interface-names.unpredictable"
135 "nixos.tests.predictable-interface-names.unpredictableNetworkd"
139 "nixpkgs.tests-stdenv-gcc-stageCompare"