From 02c4ffa5550a3e35f62ae0bfed4c08812e66bf24 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 24 Oct 2013 20:11:04 +0200 Subject: Add an aggregate job --- release.nix | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/release.nix b/release.nix index 97ed0e7..b852014 100644 --- a/release.nix +++ b/release.nix @@ -32,7 +32,7 @@ let }; - build = pkgs.lib.genAttrs [ "x86_64-linux" "i686-linux" "x86_64-freebsd" "i686-freebsd" "x86_64-darwin" "i686-solaris" "i686-cygwin" ] (system: + build = pkgs.lib.genAttrs [ "x86_64-linux" "i686-linux" "x86_64-freebsd" "i686-freebsd" "x86_64-darwin" /* "i686-solaris" "i686-cygwin" */ ] (system: with import { inherit system; }; @@ -101,6 +101,25 @@ let deb_ubuntu1310x86_64 = makeDeb_x86_64 (diskImages: diskImages.ubuntu1310x86_64) 90; + release = pkgs.releaseTools.aggregate + { name = "patchelf-${tarball.version}"; + constituents = + [ tarball + build.x86_64-linux + build.i686-linux + build.x86_64-freebsd + build.i686-freebsd + build.x86_64-darwin + rpm_fedora19i386 + rpm_fedora19x86_64 + deb_debian7i386 + deb_debian7x86_64 + deb_ubuntu1310i386 + deb_ubuntu1310x86_64 + ]; + meta.description = "Release-critical builds"; + }; + }; -- cgit v0.12