Merge pull request #284090 from trofi/hydra-expose-build-target

pkgs/top-level/release.nix: expose `.build` as a direct jobset for hydra

authored by Bernardo Meurer and committed by GitHub 57fd1ef3 cce644b9

+2 -2
+2 -2
pkgs/top-level/release.nix
··· 220 220 }; 221 221 }; 222 222 in { 223 - inherit (bootstrap) dist test; 223 + inherit (bootstrap) build dist test; 224 224 } 225 225 else if hasSuffix "-darwin" config then 226 226 let ··· 229 229 }; 230 230 in { 231 231 # Lightweight distribution and test 232 - inherit (bootstrap) dist test; 232 + inherit (bootstrap) build dist test; 233 233 # Test a full stdenv bootstrap from the bootstrap tools definition 234 234 # TODO: Re-enable once the new bootstrap-tools are in place. 235 235 #inherit (bootstrap.test-pkgs) stdenv;