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 dummy;
37 inherit (nixos'.tests)
49 predictable-interface-names
53 inherit (nixos'.tests.installer)
57 simpleUefiSystemdBoot;
87 tests-stdenv-gcc-stageCompare;
91 onSupported = x: map (system: "${x}.${system}") supportedSystems;
92 onSystems = systems: x: map (system: "${x}.${system}")
93 (pkgs.lib.intersectLists systems supportedSystems);
94 in pkgs.releaseTools.aggregate {
95 name = "nixos-${nixos.channel.version}";
97 description = "Release-critical builds for the NixOS channel";
100 constituents = lib.flatten [
104 "nixpkgs.release-checks"
106 (map (onSystems [ "x86_64-linux" ]) [
107 "nixos.tests.installer.lvm"
108 "nixos.tests.installer.separateBoot"
109 "nixos.tests.installer.simple"
115 "nixos.tests.containers-imperative"
116 "nixos.tests.containers-ip"
117 "nixos.tests.firewall"
119 "nixos.tests.installer.simpleUefiSystemdBoot"
122 "nixos.tests.nat.firewall"
123 "nixos.tests.nat.standalone"
124 "nixos.tests.nfs4.simple"
125 "nixos.tests.openssh"
126 "nixos.tests.php.fpm"
127 "nixos.tests.php.pcre"
128 "nixos.tests.predictable-interface-names.predictable"
129 "nixos.tests.predictable-interface-names.predictableNetworkd"
130 "nixos.tests.predictable-interface-names.unpredictable"
131 "nixos.tests.predictable-interface-names.unpredictableNetworkd"
135 "nixpkgs.tests-stdenv-gcc-stageCompare"
136 "nixpkgs.opensshTest"