release.nix: pass lib-tests to tarball

It doesn't make sense for release.nix to run these twice; once
directly, and once as part of the tarball job.
This commit is contained in:
Alyssa Ross
2025-06-30 10:26:29 +02:00
parent 3016b4b15d
commit 1063473001
+9 -2
View File
@@ -95,8 +95,15 @@ let
"aarch64"
] (arch: elem "${arch}-darwin" supportedSystems);
nonPackageJobs = {
tarball = import ./make-tarball.nix { inherit pkgs nixpkgs officialRelease; };
nonPackageJobs = rec {
tarball = import ./make-tarball.nix {
inherit
pkgs
lib-tests
nixpkgs
officialRelease
;
};
release-checks = import ./nixpkgs-basic-release-checks.nix {
inherit pkgs nixpkgs supportedSystems;