Skip to content

Commit 02c4ffa

Browse files
committed
Add an aggregate job
1 parent 845860d commit 02c4ffa

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

release.nix

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ let
3232
};
3333

3434

35-
build = pkgs.lib.genAttrs [ "x86_64-linux" "i686-linux" "x86_64-freebsd" "i686-freebsd" "x86_64-darwin" "i686-solaris" "i686-cygwin" ] (system:
35+
build = pkgs.lib.genAttrs [ "x86_64-linux" "i686-linux" "x86_64-freebsd" "i686-freebsd" "x86_64-darwin" /* "i686-solaris" "i686-cygwin" */ ] (system:
3636

3737
with import <nixpkgs> { inherit system; };
3838

@@ -101,6 +101,25 @@ let
101101
deb_ubuntu1310x86_64 = makeDeb_x86_64 (diskImages: diskImages.ubuntu1310x86_64) 90;
102102

103103

104+
release = pkgs.releaseTools.aggregate
105+
{ name = "patchelf-${tarball.version}";
106+
constituents =
107+
[ tarball
108+
build.x86_64-linux
109+
build.i686-linux
110+
build.x86_64-freebsd
111+
build.i686-freebsd
112+
build.x86_64-darwin
113+
rpm_fedora19i386
114+
rpm_fedora19x86_64
115+
deb_debian7i386
116+
deb_debian7x86_64
117+
deb_ubuntu1310i386
118+
deb_ubuntu1310x86_64
119+
];
120+
meta.description = "Release-critical builds";
121+
};
122+
104123
};
105124

106125

0 commit comments

Comments
 (0)