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

pkgs/top-level/release.nix: expose `.build` as a direct jobset for hydra
This commit is contained in:
Bernardo Meurer 2024-01-26 16:26:54 -05:00 committed by GitHub
commit 57fd1ef33b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;