2021-10-07 14:46:35 +00:00
|
|
|
/*
|
|
|
|
This is the Hydra jobset for the `r-updates` branch in Nixpkgs.
|
|
|
|
The jobset can be tested by:
|
|
|
|
|
|
|
|
$ hydra-eval-jobs -I . pkgs/top-level/release-r.nix
|
|
|
|
*/
|
2021-12-06 16:07:01 +00:00
|
|
|
{ supportedSystems ? [ "x86_64-linux" "aarch64-linux" ] }:
|
2021-10-07 14:46:35 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
let
|
|
|
|
inherit (import ./release-lib.nix { inherit supportedSystems; })
|
|
|
|
mapTestOn
|
|
|
|
packagePlatforms
|
|
|
|
pkgs
|
|
|
|
;
|
|
|
|
in
|
2021-10-07 14:46:35 +00:00
|
|
|
|
|
|
|
mapTestOn {
|
|
|
|
rPackages = packagePlatforms pkgs.rPackages;
|
|
|
|
}
|