update release-python.nix from python branch
This commit is contained in:
parent
30e9f13d81
commit
595937318f
@ -1,13 +1,15 @@
|
|||||||
/*
|
/*
|
||||||
This file will be evaluated by hydra with a call like this:
|
test for example like this
|
||||||
hydra_eval_jobs --gc-roots-dir \
|
$ nix-build pkgs/top-level/release-python.nix
|
||||||
/nix/var/nix/gcroots/per-user/hydra/hydra-roots --argstr \
|
|
||||||
system i686-linux --argstr system x86_64-linux --arg \
|
|
||||||
nixpkgs "{outPath = ./}" .... release.nix
|
|
||||||
|
|
||||||
Hydra can be installed with "nix-env -i hydra".
|
|
||||||
*/
|
*/
|
||||||
with (import ./release-lib.nix);
|
|
||||||
|
{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
|
||||||
|
, officialRelease ? false
|
||||||
|
, # The platforms for which we build Nixpkgs.
|
||||||
|
supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "x86_64-freebsd" "i686-freebsd" ]
|
||||||
|
}:
|
||||||
|
|
||||||
|
with import ./release-lib.nix {inherit supportedSystems; };
|
||||||
|
|
||||||
let
|
let
|
||||||
jobsForDerivations = attrset: pkgs.lib.attrsets.listToAttrs
|
jobsForDerivations = attrset: pkgs.lib.attrsets.listToAttrs
|
||||||
@ -19,12 +21,13 @@ let
|
|||||||
(n: v: (v.type or null) == "derivation")
|
(n: v: (v.type or null) == "derivation")
|
||||||
attrset)));
|
attrset)));
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
|
|
||||||
tarball = import ./make-tarball.nix;
|
jobs =
|
||||||
|
{
|
||||||
|
|
||||||
} // (mapTestOn rec {
|
# } // (mapTestOn ((packagesWithMetaPlatform pkgs) // rec {
|
||||||
|
|
||||||
|
} // (mapTestOn rec {
|
||||||
|
|
||||||
a2jmidid = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
a2jmidid = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||||
aacskeys = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
aacskeys = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||||
@ -1992,4 +1995,6 @@ in
|
|||||||
zsnes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
zsnes = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||||
zynaddsubfx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
zynaddsubfx = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||||
zziplib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
zziplib = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||||
})
|
});
|
||||||
|
|
||||||
|
in jobs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user