mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Adding cross-build hydra jobs a bit more generic than it was.
There is still a lot of room for improvement on how to write the cross build related jobs for hydra. Step by step. svn path=/nixpkgs/branches/stdenv-updates/; revision=19621
This commit is contained in:
parent
d47aead668
commit
d9dd893969
@ -4,14 +4,10 @@ let
|
|||||||
|
|
||||||
pkgs = allPackages {};
|
pkgs = allPackages {};
|
||||||
|
|
||||||
pkgsSheevaplug = allPackages {
|
/* The working or failing letters for cross builds will be sent only to
|
||||||
crossSystem = {
|
the following maintainers, as most package maintainers will not be
|
||||||
config = "armv5tel-unknown-linux-gnueabi";
|
interested in the result of cross building a package. */
|
||||||
bigEndian = false;
|
crossMaintainers = with pkgs.lib.maintainers; [ viric ];
|
||||||
arch = "arm";
|
|
||||||
float = "soft";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Set the Hydra scheduling priority for a job. The default
|
/* Set the Hydra scheduling priority for a job. The default
|
||||||
priority (100) should be used for most jobs. A different
|
priority (100) should be used for most jobs. A different
|
||||||
@ -30,6 +26,12 @@ let
|
|||||||
testOn = systems: f: {system ? builtins.currentSystem}:
|
testOn = systems: f: {system ? builtins.currentSystem}:
|
||||||
if pkgs.lib.elem system systems then f (allPackages {inherit system;}) else {};
|
if pkgs.lib.elem system systems then f (allPackages {inherit system;}) else {};
|
||||||
|
|
||||||
|
/* Similar to the testOn function, but with an additional 'crossSystem'
|
||||||
|
* parameter for allPackages, defining the target platform for cross builds */
|
||||||
|
testOnCross = crossSystem: systems: f: {system ? builtins.currentSystem}:
|
||||||
|
if pkgs.lib.elem system systems then f (allPackages {inherit system
|
||||||
|
crossSystem;}) else {};
|
||||||
|
|
||||||
/* Map an attribute of the form `foo = [platforms...]' to `testOn
|
/* Map an attribute of the form `foo = [platforms...]' to `testOn
|
||||||
[platforms...] (pkgs: pkgs.foo)'. */
|
[platforms...] (pkgs: pkgs.foo)'. */
|
||||||
mapTestOn = pkgs.lib.mapAttrsRecursiveCond
|
mapTestOn = pkgs.lib.mapAttrsRecursiveCond
|
||||||
@ -42,6 +44,22 @@ let
|
|||||||
(pkgs.lib.getAttrFromPath path pkgs);
|
(pkgs.lib.getAttrFromPath path pkgs);
|
||||||
in testOn job.systems getPkg);
|
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,
|
||||||
|
* and triggering the build of the host derivation (cross built - hostDrv). */
|
||||||
|
mapTestOnCross = crossSystem: pkgs.lib.mapAttrsRecursiveCond
|
||||||
|
(as: !(as ? type && as.type == "job"))
|
||||||
|
(path: value:
|
||||||
|
let
|
||||||
|
job = toJob value;
|
||||||
|
getPkg = pkgs: setCrossMaintainers
|
||||||
|
(pkgs.lib.addMetaAttrs { schedulingPriority = toString job.schedulingPriority; }
|
||||||
|
(pkgs.lib.getAttrFromPath (path ++ ["hostDrv"]) pkgs));
|
||||||
|
in testOnCross crossSystem job.systems getPkg);
|
||||||
|
|
||||||
|
setCrossMaintainers = pkg: pkg // { meta.maintainers = crossMaintainers; };
|
||||||
|
|
||||||
/* Find all packages that have a meta.platforms field listing the
|
/* Find all packages that have a meta.platforms field listing the
|
||||||
supported platforms. */
|
supported platforms. */
|
||||||
packagesWithMetaPlatform = attrSet:
|
packagesWithMetaPlatform = attrSet:
|
||||||
@ -87,12 +105,6 @@ in {
|
|||||||
|
|
||||||
tarball = import ./make-tarball.nix;
|
tarball = import ./make-tarball.nix;
|
||||||
|
|
||||||
bisonSheevaplug = let
|
|
||||||
system = builtins.currentSystem;
|
|
||||||
in
|
|
||||||
assert (system == "i686-linux" || system == "x86_64-linux");
|
|
||||||
pkgsSheevaplug.bison.hostDrv;
|
|
||||||
|
|
||||||
} // (mapTestOn ((packagesWithMetaPlatform pkgs) // rec {
|
} // (mapTestOn ((packagesWithMetaPlatform pkgs) // rec {
|
||||||
|
|
||||||
MPlayer = linux;
|
MPlayer = linux;
|
||||||
@ -652,4 +664,54 @@ in {
|
|||||||
xset = linux;
|
xset = linux;
|
||||||
};
|
};
|
||||||
|
|
||||||
} ))
|
} )) // (
|
||||||
|
/* Test some cross builds to the Sheevaplug */
|
||||||
|
let
|
||||||
|
crossSystem = {
|
||||||
|
config = "armv5tel-unknown-linux-gnueabi";
|
||||||
|
bigEndian = false;
|
||||||
|
arch = "arm";
|
||||||
|
float = "soft";
|
||||||
|
};
|
||||||
|
nativePlatforms = linux;
|
||||||
|
in {
|
||||||
|
crossArmLinux = mapTestOnCross crossSystem (rec {
|
||||||
|
bison = nativePlatforms;
|
||||||
|
uboot = nativePlatforms;
|
||||||
|
uclibc = nativePlatforms;
|
||||||
|
xorg = {
|
||||||
|
fontadobe100dpi = nativePlatforms;
|
||||||
|
fontadobe75dpi = nativePlatforms;
|
||||||
|
fontbh100dpi = nativePlatforms;
|
||||||
|
fontbhlucidatypewriter100dpi = nativePlatforms;
|
||||||
|
fontbhlucidatypewriter75dpi = nativePlatforms;
|
||||||
|
fontbhttf = nativePlatforms;
|
||||||
|
fontcursormisc = nativePlatforms;
|
||||||
|
fontmiscmisc = nativePlatforms;
|
||||||
|
iceauth = nativePlatforms;
|
||||||
|
libX11 = nativePlatforms;
|
||||||
|
lndir = all;
|
||||||
|
setxkbmap = nativePlatforms;
|
||||||
|
xauth = nativePlatforms;
|
||||||
|
xev = nativePlatforms;
|
||||||
|
xf86inputkeyboard = nativePlatforms;
|
||||||
|
xf86inputmouse = nativePlatforms;
|
||||||
|
xf86inputevdev = nativePlatforms;
|
||||||
|
xf86inputsynaptics = nativePlatforms;
|
||||||
|
xf86videoati = nativePlatforms;
|
||||||
|
xf86videointel = nativePlatforms;
|
||||||
|
xf86videonv = nativePlatforms;
|
||||||
|
xf86videovesa = nativePlatforms;
|
||||||
|
xfs = nativePlatforms;
|
||||||
|
xkbcomp = nativePlatforms;
|
||||||
|
xmessage = nativePlatforms;
|
||||||
|
xorgserver = nativePlatforms;
|
||||||
|
xrandr = nativePlatforms;
|
||||||
|
xrdb = nativePlatforms;
|
||||||
|
xset = nativePlatforms;
|
||||||
|
};
|
||||||
|
gtkLibs = {
|
||||||
|
gtk = nativePlatforms;
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user