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-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. */
|
2018-09-06 18:28:44 +00:00
|
|
|
|
mkPkgsFor = crossSystem: let
|
|
|
|
|
packageSet' = args: packageSet (args // { inherit crossSystem; } // nixpkgsArgs);
|
|
|
|
|
|
|
|
|
|
pkgs_x86_64_linux = packageSet' { system = "x86_64-linux"; };
|
|
|
|
|
pkgs_i686_linux = packageSet' { system = "i686-linux"; };
|
|
|
|
|
pkgs_aarch64_linux = packageSet' { system = "aarch64-linux"; };
|
|
|
|
|
pkgs_armv6l_linux = packageSet' { system = "armv6l-linux"; };
|
|
|
|
|
pkgs_armv7l_linux = packageSet' { system = "armv7l-linux"; };
|
|
|
|
|
pkgs_x86_64_darwin = packageSet' { system = "x86_64-darwin"; };
|
|
|
|
|
pkgs_x86_64_freebsd = packageSet' { system = "x86_64-freebsd"; };
|
|
|
|
|
pkgs_i686_freebsd = packageSet' { system = "i686-freebsd"; };
|
|
|
|
|
pkgs_i686_cygwin = packageSet' { system = "i686-cygwin"; };
|
|
|
|
|
pkgs_x86_64_cygwin = packageSet' { system = "x86_64-cygwin"; };
|
|
|
|
|
|
|
|
|
|
in system:
|
|
|
|
|
if system == "x86_64-linux" then pkgs_x86_64_linux
|
|
|
|
|
else if system == "i686-linux" then pkgs_i686_linux
|
|
|
|
|
else if system == "aarch64-linux" then pkgs_aarch64_linux
|
|
|
|
|
else if system == "armv6l-linux" then pkgs_armv6l_linux
|
|
|
|
|
else if system == "armv7l-linux" then pkgs_armv7l_linux
|
|
|
|
|
else if system == "x86_64-darwin" then pkgs_x86_64_darwin
|
|
|
|
|
else if system == "x86_64-freebsd" then pkgs_x86_64_freebsd
|
|
|
|
|
else if system == "i686-freebsd" then pkgs_i686_freebsd
|
|
|
|
|
else if system == "i686-cygwin" then pkgs_i686_cygwin
|
|
|
|
|
else if system == "x86_64-cygwin" then pkgs_x86_64_cygwin
|
|
|
|
|
else abort "unsupported system type: ${system}";
|
|
|
|
|
|
2018-11-05 16:27:50 +00:00
|
|
|
|
pkgsFor = pkgsForCross null;
|
2018-09-06 18:28:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# More poor man's memoisation
|
|
|
|
|
pkgsForCross = let
|
|
|
|
|
examplesByConfig = lib.flip lib.mapAttrs'
|
2018-11-14 05:03:31 +00:00
|
|
|
|
lib.systems.examples
|
2018-09-06 18:28:44 +00:00
|
|
|
|
(_: crossSystem: nameValuePair crossSystem.config {
|
|
|
|
|
inherit crossSystem;
|
|
|
|
|
pkgsFor = mkPkgsFor crossSystem;
|
|
|
|
|
});
|
|
|
|
|
native = mkPkgsFor null;
|
|
|
|
|
in crossSystem: let
|
2018-11-01 20:14:55 +00:00
|
|
|
|
candidate = examplesByConfig.${crossSystem.config} or null;
|
2018-09-06 18:28:44 +00:00
|
|
|
|
in if crossSystem == null
|
|
|
|
|
then native
|
2018-11-01 20:14:55 +00:00
|
|
|
|
else if candidate != null && lib.matchAttrs crossSystem candidate.crossSystem
|
2018-09-06 18:28:44 +00:00
|
|
|
|
then candidate.pkgsFor
|
2018-11-01 20:14:55 +00:00
|
|
|
|
else mkPkgsFor crossSystem; # uncached fallback
|
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-09-06 18:28:44 +00:00
|
|
|
|
testOn = testOnCross null;
|
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
|
2018-09-06 18:28:44 +00:00
|
|
|
|
'crossSystem' parameter for packageSet', defining the target
|
2013-03-26 10:02:29 +00:00
|
|
|
|
platform for cross builds. */
|
2018-03-20 01:29:48 +00:00
|
|
|
|
testOnCross = crossSystem: metaPatterns: f: forMatchingSystems metaPatterns
|
2018-09-06 18:28:44 +00:00
|
|
|
|
(system: hydraJob' (f (pkgsForCross crossSystem system)));
|
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>)'. */
|
2018-09-06 18:28:44 +00:00
|
|
|
|
mapTestOn = _mapTestOnHelper id null;
|
2010-03-09 10:33:31 +00:00
|
|
|
|
|
|
|
|
|
|
2018-09-06 18:28:44 +00:00
|
|
|
|
_mapTestOnHelper = f: crossSystem: mapAttrsRecursive
|
2018-03-20 01:29:48 +00:00
|
|
|
|
(path: metaPatterns: testOnCross crossSystem metaPatterns
|
2018-09-06 18:28:44 +00:00
|
|
|
|
(pkgs: f (getAttrFromPath path pkgs)));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Similar to the testOn function, but with an additional 'crossSystem'
|
|
|
|
|
* parameter for packageSet', defining the target platform for cross builds,
|
|
|
|
|
* and triggering the build of the host derivation. */
|
|
|
|
|
mapTestOnCross = _mapTestOnHelper
|
|
|
|
|
(addMetaAttrs { maintainers = crossMaintainers; });
|
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
|
|
|
|
|
|
|
|
|
}
|