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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user