2012-12-22 00:17:22 +00:00
|
|
|
/*
|
2013-07-27 11:06:45 +01:00
|
|
|
test for example like this
|
2015-11-18 17:31:01 +00:00
|
|
|
$ hydra-eval-jobs pkgs/top-level/release-python.nix
|
2012-12-22 00:17:22 +00:00
|
|
|
*/
|
2013-07-27 11:06:45 +01:00
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
{ # The platforms for which we build Nixpkgs.
|
2021-09-06 03:18:50 +01:00
|
|
|
supportedSystems ? [
|
|
|
|
"aarch64-linux"
|
|
|
|
"x86_64-linux"
|
|
|
|
]
|
2020-09-11 17:20:35 +01:00
|
|
|
, # Attributes passed to nixpkgs. Don't build packages marked as unfree.
|
2023-12-12 03:08:43 +00:00
|
|
|
nixpkgsArgs ? { config = {
|
|
|
|
allowUnfree = false;
|
|
|
|
inHydra = true;
|
|
|
|
}; }
|
2013-07-27 11:06:45 +01:00
|
|
|
}:
|
|
|
|
|
2015-11-19 15:39:34 +00:00
|
|
|
let
|
2024-03-06 01:58:20 +00:00
|
|
|
release-lib = import ./release-lib.nix {
|
|
|
|
inherit supportedSystems nixpkgsArgs;
|
|
|
|
};
|
|
|
|
|
|
|
|
inherit (release-lib) mapTestOn pkgs;
|
|
|
|
|
|
|
|
inherit (release-lib.lib) isDerivation mapAttrs optionals;
|
|
|
|
|
2015-11-19 15:39:34 +00:00
|
|
|
packagePython = mapAttrs (name: value:
|
|
|
|
let res = builtins.tryEval (
|
|
|
|
if isDerivation value then
|
|
|
|
value.meta.isBuildPythonPackage or []
|
2023-11-23 00:46:36 +00:00
|
|
|
else if value.recurseForDerivations or false || value.recurseForRelease or false || value.__recurseIntoDerivationForReleaseJobs or false then
|
2015-11-19 15:39:34 +00:00
|
|
|
packagePython value
|
|
|
|
else
|
|
|
|
[]);
|
2024-03-06 01:58:20 +00:00
|
|
|
in optionals res.success res.value
|
2015-11-19 15:39:34 +00:00
|
|
|
);
|
2022-02-11 19:35:21 +00:00
|
|
|
|
|
|
|
jobs = {
|
|
|
|
lib-tests = import ../../lib/tests/release.nix { inherit pkgs; };
|
|
|
|
pkgs-lib-tests = import ../pkgs-lib/tests { inherit pkgs; };
|
|
|
|
|
|
|
|
tested = pkgs.releaseTools.aggregate {
|
|
|
|
name = "python-tested";
|
|
|
|
meta.description = "Release-critical packages from the python package sets";
|
|
|
|
constituents = [
|
2023-09-24 16:55:45 +01:00
|
|
|
jobs.nixos-render-docs.x86_64-linux # Used in nixos manual
|
|
|
|
jobs.remarshal.x86_64-linux # Used in pkgs.formats helper
|
2024-07-06 15:37:27 +01:00
|
|
|
jobs.python312Packages.afdko.x86_64-linux # Used in noto-fonts-color-emoji
|
|
|
|
jobs.python312Packages.buildcatrust.x86_64-linux # Used in pkgs.cacert
|
|
|
|
jobs.python312Packages.colorama.x86_64-linux # Used in nixos test-driver
|
|
|
|
jobs.python312Packages.ptpython.x86_64-linux # Used in nixos test-driver
|
|
|
|
jobs.python312Packages.requests.x86_64-linux # Almost ubiquous package
|
|
|
|
jobs.python312Packages.sphinx.x86_64-linux # Document creation for many packages
|
2022-02-11 19:35:21 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // (mapTestOn (packagePython pkgs));
|
|
|
|
in jobs
|