2015-12-16 12:59:02 +00:00
|
|
|
|
{ supportedSystems
|
2016-06-22 08:39:50 +00:00
|
|
|
|
, packageSet ? (import ../..)
|
2015-12-16 12:59:02 +00:00
|
|
|
|
, scrubJobs ? true
|
2017-02-27 16:20:25 +00:00
|
|
|
|
, # Attributes passed to nixpkgs. Don't build packages marked as unfree.
|
|
|
|
|
nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
|
2015-12-16 12:59:02 +00:00
|
|
|
|
}:
|
2013-03-26 12:12:25 +00:00
|
|
|
|
|
2017-03-23 23:18:43 +00:00
|
|
|
|
let
|
|
|
|
|
lib = import ../../lib;
|
|
|
|
|
in with lib;
|
2015-03-20 16:05:30 +00:00
|
|
|
|
|
2010-03-09 10:33:31 +00:00
|
|
|
|
rec {
|
|
|
|
|
|
2017-02-27 16:20:25 +00:00
|
|
|
|
allPackages = args: packageSet (args // nixpkgsArgs);
|
2013-01-17 22:41:37 +00:00
|
|
|
|
|
2017-05-20 16:44:20 +00:00
|
|
|
|
pkgs = packageSet (lib.recursiveUpdate { system = "x86_64-linux"; config.allowUnsupportedSystem = true; } nixpkgsArgs);
|
2017-03-23 23:18:43 +00:00
|
|
|
|
inherit lib;
|
2010-03-09 10:33:31 +00:00
|
|
|
|
|
2013-03-26 10:02:29 +00:00
|
|
|
|
|
2015-12-16 12:59:02 +00:00
|
|
|
|
hydraJob' = if scrubJobs then hydraJob else id;
|
|
|
|
|
|
|
|
|
|
|
2013-03-26 10:02:29 +00:00
|
|
|
|
/* !!! Hack: poor man's memoisation function. Necessary to prevent
|
2010-05-25 10:35:14 +00: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
|
2017-03-08 16:12:03 +00:00
|
|
|
|
else if system == "aarch64-linux" then pkgs_aarch64_linux
|
2017-12-30 22:19:10 +00:00
|
|
|
|
else if system == "armv6l-linux" then pkgs_armv6l_linux
|
|
|
|
|
else if system == "armv7l-linux" then pkgs_armv7l_linux
|
2010-05-25 10:35:14 +00:00
|
|
|
|
else if system == "x86_64-darwin" then pkgs_x86_64_darwin
|
2012-03-08 12:52:00 +00:00
|
|
|
|
else if system == "x86_64-freebsd" then pkgs_x86_64_freebsd
|
2010-05-25 10:35:14 +00:00
|
|
|
|
else if system == "i686-freebsd" then pkgs_i686_freebsd
|
|
|
|
|
else if system == "i686-cygwin" then pkgs_i686_cygwin
|
2015-05-26 13:18:49 +00:00
|
|
|
|
else if system == "x86_64-cygwin" then pkgs_x86_64_cygwin
|
2010-05-25 10:35:14 +00:00
|
|
|
|
else abort "unsupported system type: ${system}";
|
|
|
|
|
|
|
|
|
|
pkgs_x86_64_linux = allPackages { system = "x86_64-linux"; };
|
|
|
|
|
pkgs_i686_linux = allPackages { system = "i686-linux"; };
|
2017-03-08 16:12:03 +00:00
|
|
|
|
pkgs_aarch64_linux = allPackages { system = "aarch64-linux"; };
|
2017-12-30 22:19:10 +00:00
|
|
|
|
pkgs_armv6l_linux = allPackages { system = "armv6l-linux"; };
|
|
|
|
|
pkgs_armv7l_linux = allPackages { system = "armv7l-linux"; };
|
2010-05-25 10:35:14 +00:00
|
|
|
|
pkgs_x86_64_darwin = allPackages { system = "x86_64-darwin"; };
|
2012-03-08 12:52:00 +00:00
|
|
|
|
pkgs_x86_64_freebsd = allPackages { system = "x86_64-freebsd"; };
|
2010-05-25 10:35:14 +00:00
|
|
|
|
pkgs_i686_freebsd = allPackages { system = "i686-freebsd"; };
|
|
|
|
|
pkgs_i686_cygwin = allPackages { system = "i686-cygwin"; };
|
2015-05-26 13:18:49 +00:00
|
|
|
|
pkgs_x86_64_cygwin = allPackages { system = "x86_64-cygwin"; };
|
2010-05-25 10:35:14 +00:00
|
|
|
|
|
2013-03-26 10:02:29 +00:00
|
|
|
|
|
2018-03-20 01:29:48 +00:00
|
|
|
|
# Given a list of 'meta.platforms'-style patterns, return the sublist of
|
|
|
|
|
# `supportedSystems` containing systems that matches at least one of the given
|
|
|
|
|
# patterns.
|
|
|
|
|
#
|
|
|
|
|
# This is written in a funny way so that we only elaborate the systems once.
|
|
|
|
|
supportedMatches = let
|
|
|
|
|
supportedPlatforms = map
|
|
|
|
|
(system: lib.systems.elaborate { inherit system; })
|
|
|
|
|
supportedSystems;
|
|
|
|
|
in metaPatterns: let
|
|
|
|
|
anyMatch = platform:
|
|
|
|
|
lib.any (lib.meta.platformMatch platform) metaPatterns;
|
|
|
|
|
matchingPlatforms = lib.filter anyMatch supportedPlatforms;
|
|
|
|
|
in map ({ system, ...}: system) matchingPlatforms;
|
|
|
|
|
|
|
|
|
|
|
2017-02-09 21:09:47 +00:00
|
|
|
|
assertTrue = bool:
|
|
|
|
|
if bool
|
|
|
|
|
then pkgs.runCommand "evaluated-to-true" {} "touch $out"
|
|
|
|
|
else pkgs.runCommand "evaluated-to-false" {} "false";
|
|
|
|
|
|
2018-03-20 01:29:48 +00:00
|
|
|
|
|
2010-05-25 10:35:14 +00:00
|
|
|
|
/* The working or failing mails for cross builds will be sent only to
|
2010-03-09 10:33:31 +00:00
|
|
|
|
the following maintainers, as most package maintainers will not be
|
|
|
|
|
interested in the result of cross building a package. */
|
2015-03-20 16:05:30 +00:00
|
|
|
|
crossMaintainers = [ maintainers.viric ];
|
2010-03-09 10:33:31 +00:00
|
|
|
|
|
2018-03-20 01:29:48 +00:00
|
|
|
|
|
|
|
|
|
# Generate attributes for all supported systems.
|
2018-01-16 16:29:43 +00:00
|
|
|
|
forAllSystems = genAttrs supportedSystems;
|
2018-03-20 01:29:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Generate attributes for all sytems matching at least one of the given
|
|
|
|
|
# patterns
|
|
|
|
|
forMatchingSystems = metaPatterns: genAttrs (supportedMatches metaPatterns);
|
|
|
|
|
|
2013-03-26 10:02:29 +00:00
|
|
|
|
|
2013-03-26 10:24:05 +00: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; ... }’. */
|
2018-03-20 01:29:48 +00:00
|
|
|
|
testOn = metaPatterns: f: forMatchingSystems metaPatterns
|
2016-12-25 18:38:37 +00:00
|
|
|
|
(system: hydraJob' (f (pkgsFor system)));
|
2010-03-09 10:33:31 +00:00
|
|
|
|
|
2013-03-26 10:02:29 +00:00
|
|
|
|
|
|
|
|
|
/* Similar to the testOn function, but with an additional
|
|
|
|
|
'crossSystem' parameter for allPackages, defining the target
|
|
|
|
|
platform for cross builds. */
|
2018-03-20 01:29:48 +00:00
|
|
|
|
testOnCross = crossSystem: metaPatterns: f: forMatchingSystems metaPatterns
|
2016-12-25 18:17:03 +00:00
|
|
|
|
(system: hydraJob' (f (allPackages { inherit system crossSystem; })));
|
2013-03-26 10:02:29 +00:00
|
|
|
|
|
2010-03-09 10:33:31 +00:00
|
|
|
|
|
2015-03-20 17:16:43 +00:00
|
|
|
|
/* Given a nested set where the leaf nodes are lists of platforms,
|
|
|
|
|
map each leaf node to `testOn [platforms...] (pkgs:
|
|
|
|
|
pkgs.<attrPath>)'. */
|
|
|
|
|
mapTestOn = mapAttrsRecursive
|
2018-03-20 01:29:48 +00:00
|
|
|
|
(path: metaPatterns: testOn metaPatterns (pkgs: getAttrFromPath path pkgs));
|
2010-03-09 10:33:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Similar to the testOn function, but with an additional 'crossSystem'
|
|
|
|
|
* parameter for allPackages, defining the target platform for cross builds,
|
2012-12-28 18:08:19 +00:00
|
|
|
|
* and triggering the build of the host derivation (cross built - crossDrv). */
|
2015-03-20 17:16:43 +00:00
|
|
|
|
mapTestOnCross = crossSystem: mapAttrsRecursive
|
2018-03-20 01:29:48 +00:00
|
|
|
|
(path: metaPatterns: testOnCross crossSystem metaPatterns
|
2016-12-26 22:42:48 +00:00
|
|
|
|
(pkgs: addMetaAttrs { maintainers = crossMaintainers; } (getAttrFromPath path pkgs)));
|
2015-03-20 17:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Recursively map a (nested) set of derivations to an isomorphic
|
|
|
|
|
set of meta.platforms values. */
|
|
|
|
|
packagePlatforms = mapAttrs (name: value:
|
|
|
|
|
let res = builtins.tryEval (
|
|
|
|
|
if isDerivation value then
|
2018-03-20 01:29:48 +00:00
|
|
|
|
value.meta.hydraPlatforms
|
2018-03-20 02:25:49 +00:00
|
|
|
|
or (supportedMatches (value.meta.platforms or [ "x86_64-linux" ]))
|
2015-03-20 17:16:43 +00:00
|
|
|
|
else if value.recurseForDerivations or false || value.recurseForRelease or false then
|
|
|
|
|
packagePlatforms value
|
|
|
|
|
else
|
|
|
|
|
[]);
|
|
|
|
|
in if res.success then res.value else []
|
|
|
|
|
);
|
2010-03-09 10:33:31 +00:00
|
|
|
|
|
2013-03-26 10:02:29 +00:00
|
|
|
|
|
2010-03-09 10:33:31 +00:00
|
|
|
|
/* Common platform groups on which to test packages. */
|
2018-03-13 22:00:52 +00:00
|
|
|
|
inherit (platforms) unix linux darwin cygwin all mesaPlatforms;
|
2010-03-09 10:33:31 +00:00
|
|
|
|
|
|
|
|
|
/* Platform groups for specific kinds of applications. */
|
|
|
|
|
x11Supported = linux;
|
|
|
|
|
gtkSupported = linux;
|
2012-11-29 13:10:49 +00:00
|
|
|
|
ghcSupported = linux;
|
2010-03-09 10:33:31 +00:00
|
|
|
|
|
|
|
|
|
}
|