Revert "nixpkgs: add tested alias for unstable job"
This reverts commit 69e614d1e6
.
This commit is contained in:
parent
9a668ec58b
commit
6d9fe5dc8a
|
@ -21,6 +21,16 @@ with import ./release-lib.nix { inherit supportedSystems scrubJobs; };
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
lib = pkgs.lib;
|
||||||
|
|
||||||
|
jobs =
|
||||||
|
{ tarball = import ./make-tarball.nix { inherit pkgs nixpkgs officialRelease; };
|
||||||
|
|
||||||
|
metrics = import ./metrics.nix { inherit pkgs nixpkgs; };
|
||||||
|
|
||||||
|
manual = import ../../doc;
|
||||||
|
lib-tests = import ../../lib/tests/release.nix { inherit nixpkgs; };
|
||||||
|
|
||||||
unstable = pkgs.releaseTools.aggregate
|
unstable = pkgs.releaseTools.aggregate
|
||||||
{ name = "nixpkgs-${jobs.tarball.version}";
|
{ name = "nixpkgs-${jobs.tarball.version}";
|
||||||
meta.description = "Release-critical builds for the Nixpkgs unstable channel";
|
meta.description = "Release-critical builds for the Nixpkgs unstable channel";
|
||||||
|
@ -58,21 +68,6 @@ let
|
||||||
] ++ lib.collect lib.isDerivation jobs.stdenvBootstrapTools;
|
] ++ lib.collect lib.isDerivation jobs.stdenvBootstrapTools;
|
||||||
};
|
};
|
||||||
|
|
||||||
lib = pkgs.lib;
|
|
||||||
|
|
||||||
jobs =
|
|
||||||
rec { tarball = import ./make-tarball.nix { inherit pkgs nixpkgs officialRelease; };
|
|
||||||
|
|
||||||
metrics = import ./metrics.nix { inherit pkgs nixpkgs; };
|
|
||||||
|
|
||||||
manual = import ../../doc;
|
|
||||||
lib-tests = import ../../lib/tests/release.nix { inherit nixpkgs; };
|
|
||||||
|
|
||||||
# for consistency with NixOS tested job
|
|
||||||
tested = unstable;
|
|
||||||
inherit unstable;
|
|
||||||
|
|
||||||
|
|
||||||
stdenvBootstrapTools.i686-linux =
|
stdenvBootstrapTools.i686-linux =
|
||||||
{ inherit (import ../stdenv/linux/make-bootstrap-tools.nix { system = "i686-linux"; }) dist test; };
|
{ inherit (import ../stdenv/linux/make-bootstrap-tools.nix { system = "i686-linux"; }) dist test; };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue