Files
nixpkgs/pkgs/build-support
Eelco Dolstra b38647766d releaseTools: Add ‘aggregate’ function
An aggregate is a trivial build that depends on other builds.  This is
intended to provide a declarative replacement of Hydra's "view"
mechanism.

For instance, you can define an aggregate named "critical" that
depends on a selected set of jobs:

  critical = releaseTools.aggregate
    { name = "foo-${tarball.version}";
      members =
        [ tarball
          build.x86_64-linux
          ...
        ];
      meta.description = "Release-critical builds";
    };

The "critical" build will only succeed if all its members
(dependencies) succeed.
2013-03-26 11:58:59 +01:00
..
2011-02-08 13:09:17 +00:00
2012-06-20 23:28:53 -04:00
2008-07-06 15:46:10 +00:00
2005-12-05 14:11:09 +00:00
2013-03-09 16:33:14 +04:00
2013-03-15 12:48:35 +01:00