summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-01-26 20:09:43 +0000
committerSergei Trofimovich <slyich@gmail.com>2024-01-26 20:09:43 +0000
commit318667d8d913bf5f62dd6a9a2fec72185aba3511 (patch)
tree72edf90632bc9ac2c4d9d9c2516ce8a93d872ef3
parent5af80acc9abf4dac84f33ab4eebe2374f25659c8 (diff)
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
-rw-r--r--pkgs/top-level/release.nix4
1 files 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;