Skip to content

Commit 1bb8a47

Browse files
committedApr 10, 2017
Add aggregate job for a forthcoming nixpkgs-darwin-unstable channel
1 parent 0e0e7c1 commit 1bb8a47

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎pkgs/top-level/release.nix

+15
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,21 @@ let
3131
manual = import ../../doc;
3232
lib-tests = import ../../lib/tests/release.nix { inherit nixpkgs; };
3333

34+
darwin-tested = pkgs.releaseTools.aggregate
35+
{ name = "nixpkgs-darwin-${jobs.tarball.version}";
36+
meta.description = "Release-critical builds for the Nixpkgs darwin channel";
37+
constituents =
38+
[ jobs.tarball
39+
jobs.stdenv.x86_64-darwin
40+
jobs.ghc.x86_64-darwin
41+
jobs.cabal2nix.x86_64-darwin
42+
jobs.ruby.x86_64-darwin
43+
jobs.python.x86_64-darwin
44+
jobs.rustc.x86_64-darwin
45+
jobs.go.x86_64-darwin
46+
];
47+
};
48+
3449
unstable = pkgs.releaseTools.aggregate
3550
{ name = "nixpkgs-${jobs.tarball.version}";
3651
meta.description = "Release-critical builds for the Nixpkgs unstable channel";

0 commit comments

Comments
 (0)
Please sign in to comment.