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