blob: 2443c7efa6fe59de420b354325faf61e17c83ceb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
This is the Hydra jobset for the `perl-updates` branch in Nixpkgs.
The jobset can be tested by:
$ hydra-eval-jobs pkgs/top-level/release-perl.nix
*/
{
supportedSystems ? [
"x86_64-linux"
"aarch64-linux"
],
}:
let
inherit (import ./release-lib.nix { inherit supportedSystems; }) mapTestOn packagePlatforms pkgs;
in
mapTestOn { perlPackages = packagePlatforms pkgs.perlPackages; }
|