From 318667d8d913bf5f62dd6a9a2fec72185aba3511 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Fri, 26 Jan 2024 20:09:43 +0000 Subject: [PATCH] pkgs/top-level/release.nix: expose `.build` as a direct jobset for hydra This matches jobsets for cross-jobs. This way it' will be a bit easier to automatically extract `bootstrapTools` for mass updates in https://github.com/NixOS/nixpkgs/issues/253713 --- pkgs/top-level/release.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index b257f2411c7d..a8f1e69b361f 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -220,7 +220,7 @@ let }; }; in { - inherit (bootstrap) dist test; + inherit (bootstrap) build dist test; } else if hasSuffix "-darwin" config then let @@ -229,7 +229,7 @@ let }; in { # Lightweight distribution and test - inherit (bootstrap) dist test; + inherit (bootstrap) build dist test; # Test a full stdenv bootstrap from the bootstrap tools definition # TODO: Re-enable once the new bootstrap-tools are in place. #inherit (bootstrap.test-pkgs) stdenv;