2013-03-26 13:12:25 +01:00
|
|
|
|
{ supportedSystems }:
|
|
|
|
|
|
2010-03-09 11:33:31 +01:00
|
|
|
|
rec {
|
|
|
|
|
|
2013-01-17 23:41:37 +01:00
|
|
|
|
# Ensure that we don't build packages marked as unfree.
|
|
|
|
|
allPackages = args: import ./all-packages.nix (args // {
|
|
|
|
|
config.allowUnfree = false;
|
|
|
|
|
});
|
|
|
|
|
|
2013-03-26 11:57:44 +01:00
|
|
|
|
pkgs = allPackages { system = "x86_64-linux"; };
|
2010-03-09 11:33:31 +01:00
|
|
|
|
|
2013-03-26 11:02:29 +01:00
|
|
|
|
|
|
|
|
|
/* !!! Hack: poor man's memoisation function. Necessary to prevent
|
2010-05-25 12:35:14 +02:00
|
|
|
|
Nixpkgs from being evaluated again and again for every
|
|
|
|
|
job/platform pair. */
|
|
|
|
|
pkgsFor = system:
|
|
|
|
|
if system == "x86_64-linux" then pkgs_x86_64_linux
|
|
|
|
|
else if system == "i686-linux" then pkgs_i686_linux
|
|
|
|
|
else if system == "x86_64-darwin" then pkgs_x86_64_darwin
|
2012-03-08 13:52:00 +01:00
|
|
|
|
else if system == "x86_64-freebsd" then pkgs_x86_64_freebsd
|
2010-05-25 12:35:14 +02:00
|
|
|
|
else if system == "i686-freebsd" then pkgs_i686_freebsd
|
|
|
|
|
else if system == "i686-cygwin" then pkgs_i686_cygwin
|
|
|
|
|
else abort "unsupported system type: ${system}";
|
|
|
|
|
|
|
|
|
|
pkgs_x86_64_linux = allPackages { system = "x86_64-linux"; };
|
|
|
|
|
pkgs_i686_linux = allPackages { system = "i686-linux"; };
|
|
|
|
|
pkgs_x86_64_darwin = allPackages { system = "x86_64-darwin"; };
|
2012-03-08 13:52:00 +01:00
|
|
|
|
pkgs_x86_64_freebsd = allPackages { system = "x86_64-freebsd"; };
|
2010-05-25 12:35:14 +02:00
|
|
|
|
pkgs_i686_freebsd = allPackages { system = "i686-freebsd"; };
|
|
|
|
|
pkgs_i686_cygwin = allPackages { system = "i686-cygwin"; };
|
|
|
|
|
|
2013-03-26 11:02:29 +01:00
|
|
|
|
|
2010-05-25 12:35:14 +02:00
|
|
|
|
/* The working or failing mails for cross builds will be sent only to
|
2010-03-09 11:33:31 +01:00
|
|
|
|
the following maintainers, as most package maintainers will not be
|
|
|
|
|
interested in the result of cross building a package. */
|
|
|
|
|
crossMaintainers = with pkgs.lib.maintainers; [ viric ];
|
|
|
|
|
|
2013-03-26 11:02:29 +01:00
|
|
|
|
|
2010-03-09 11:33:31 +01:00
|
|
|
|
/* Set the Hydra scheduling priority for a job. The default
|
2013-03-26 11:02:29 +01:00
|
|
|
|
priority (10) should be used for most jobs. A different priority
|
|
|
|
|
should only be used for a few particularly interesting jobs (in
|
|
|
|
|
terms of giving feedback to developers), such as stdenv. */
|
2010-03-09 11:33:31 +01:00
|
|
|
|
prio = level: job: toJob job // { schedulingPriority = level; };
|
|
|
|
|
|
2013-03-26 11:02:29 +01:00
|
|
|
|
|
2010-03-09 11:33:31 +01:00
|
|
|
|
toJob = x: if builtins.isAttrs x then x else
|
2012-03-06 13:21:33 +01:00
|
|
|
|
{ type = "job"; systems = x; schedulingPriority = 10; };
|
2010-03-09 11:33:31 +01:00
|
|
|
|
|
2013-03-26 11:02:29 +01:00
|
|
|
|
|
2013-03-26 11:24:05 +01:00
|
|
|
|
/* Build a package on the given set of platforms. The function `f'
|
|
|
|
|
is called for each supported platform with Nixpkgs for that
|
|
|
|
|
platform as an argument . We return an attribute set containing
|
|
|
|
|
a derivation for each supported platform, i.e. ‘{ x86_64-linux =
|
|
|
|
|
f pkgs_x86_64_linux; i686-linux = f pkgs_i686_linux; ... }’. */
|
|
|
|
|
testOn = systems: f: pkgs.lib.genAttrs
|
|
|
|
|
(pkgs.lib.filter (x: pkgs.lib.elem x supportedSystems) systems)
|
|
|
|
|
(system: f (pkgsFor system));
|
2010-03-09 11:33:31 +01:00
|
|
|
|
|
2013-03-26 11:02:29 +01:00
|
|
|
|
|
|
|
|
|
/* Similar to the testOn function, but with an additional
|
|
|
|
|
'crossSystem' parameter for allPackages, defining the target
|
|
|
|
|
platform for cross builds. */
|
2010-03-09 11:33:31 +01:00
|
|
|
|
testOnCross = crossSystem: systems: f: {system ? builtins.currentSystem}:
|
2013-03-26 11:02:29 +01:00
|
|
|
|
if pkgs.lib.elem system systems
|
|
|
|
|
then f (allPackages { inherit system crossSystem; })
|
|
|
|
|
else {};
|
|
|
|
|
|
2010-03-09 11:33:31 +01:00
|
|
|
|
|
|
|
|
|
/* Map an attribute of the form `foo = [platforms...]' to `testOn
|
|
|
|
|
[platforms...] (pkgs: pkgs.foo)'. */
|
|
|
|
|
mapTestOn = pkgs.lib.mapAttrsRecursiveCond
|
|
|
|
|
(as: !(as ? type && as.type == "job"))
|
|
|
|
|
(path: value:
|
|
|
|
|
let
|
|
|
|
|
job = toJob value;
|
|
|
|
|
getPkg = pkgs:
|
|
|
|
|
pkgs.lib.addMetaAttrs { schedulingPriority = toString job.schedulingPriority; }
|
|
|
|
|
(pkgs.lib.getAttrFromPath path pkgs);
|
|
|
|
|
in testOn job.systems getPkg);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Similar to the testOn function, but with an additional 'crossSystem'
|
|
|
|
|
* parameter for allPackages, defining the target platform for cross builds,
|
2012-12-28 19:08:19 +01:00
|
|
|
|
* and triggering the build of the host derivation (cross built - crossDrv). */
|
2010-03-09 11:33:31 +01:00
|
|
|
|
mapTestOnCross = crossSystem: pkgs.lib.mapAttrsRecursiveCond
|
|
|
|
|
(as: !(as ? type && as.type == "job"))
|
|
|
|
|
(path: value:
|
|
|
|
|
let
|
|
|
|
|
job = toJob value;
|
2010-03-09 16:48:25 +01:00
|
|
|
|
getPkg = pkgs: (pkgs.lib.addMetaAttrs {
|
|
|
|
|
schedulingPriority = toString job.schedulingPriority;
|
2012-11-29 14:10:49 +01:00
|
|
|
|
maintainers = crossMaintainers;
|
2010-03-09 16:48:25 +01:00
|
|
|
|
}
|
2010-03-09 15:14:30 +01:00
|
|
|
|
(pkgs.lib.getAttrFromPath path pkgs));
|
2010-03-09 11:33:31 +01:00
|
|
|
|
in testOnCross crossSystem job.systems getPkg);
|
|
|
|
|
|
2013-03-26 11:02:29 +01:00
|
|
|
|
|
2010-03-09 11:33:31 +01:00
|
|
|
|
/* Find all packages that have a meta.platforms field listing the
|
|
|
|
|
supported platforms. */
|
2012-11-29 14:10:49 +01:00
|
|
|
|
packagesWithMetaPlatform = attrSet:
|
2013-03-26 11:02:29 +01:00
|
|
|
|
let pairs = pkgs.lib.concatMap
|
|
|
|
|
(x:
|
|
|
|
|
let pair = builtins.tryEval
|
|
|
|
|
(let
|
|
|
|
|
attrVal = (builtins.getAttr x attrSet);
|
|
|
|
|
in
|
|
|
|
|
{ val = processPackage attrVal;
|
|
|
|
|
attrVal = attrVal;
|
|
|
|
|
attrValIsAttrs = builtins.isAttrs attrVal;
|
|
|
|
|
});
|
|
|
|
|
success = (builtins.tryEval pair.value.attrVal).success;
|
|
|
|
|
in
|
|
|
|
|
pkgs.lib.optional (success && pair.value.attrValIsAttrs && pair.value.val != [])
|
|
|
|
|
{ name = x; value = pair.value.val; })
|
|
|
|
|
(builtins.attrNames attrSet);
|
|
|
|
|
in
|
|
|
|
|
builtins.listToAttrs pairs;
|
|
|
|
|
|
2012-11-29 14:10:49 +01:00
|
|
|
|
|
2010-03-09 11:33:31 +01:00
|
|
|
|
# May fail as much as it wishes, we will catch the error.
|
2012-11-29 14:10:49 +01:00
|
|
|
|
processPackage = attrSet:
|
2010-08-03 16:02:42 +02:00
|
|
|
|
if attrSet ? recurseForDerivations && attrSet.recurseForDerivations then
|
|
|
|
|
packagesWithMetaPlatform attrSet
|
|
|
|
|
else if attrSet ? recurseForRelease && attrSet.recurseForRelease then
|
2010-03-09 11:33:31 +01:00
|
|
|
|
packagesWithMetaPlatform attrSet
|
|
|
|
|
else
|
|
|
|
|
if attrSet ? meta && attrSet.meta ? platforms
|
|
|
|
|
then attrSet.meta.platforms
|
|
|
|
|
else [];
|
|
|
|
|
|
2013-03-26 11:02:29 +01:00
|
|
|
|
|
2010-03-09 11:33:31 +01:00
|
|
|
|
/* Common platform groups on which to test packages. */
|
2013-05-15 13:11:24 +02:00
|
|
|
|
inherit (pkgs.lib.platforms) unix linux darwin cygwin allBut all mesaPlatforms;
|
2010-03-09 11:33:31 +01:00
|
|
|
|
|
|
|
|
|
/* Platform groups for specific kinds of applications. */
|
|
|
|
|
x11Supported = linux;
|
|
|
|
|
gtkSupported = linux;
|
2012-11-29 14:10:49 +01:00
|
|
|
|
ghcSupported = linux;
|
2010-03-09 11:33:31 +01:00
|
|
|
|
|
|
|
|
|
}
|