Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 24 lines 417 B view raw
1/* 2 This is the Hydra jobset for the `r-updates` branch in Nixpkgs. 3 The jobset can be tested by: 4 5 $ hydra-eval-jobs -I . pkgs/top-level/release-r.nix 6*/ 7{ 8 supportedSystems ? [ 9 "x86_64-linux" 10 "aarch64-linux" 11 ], 12}: 13 14let 15 inherit (import ./release-lib.nix { inherit supportedSystems; }) 16 mapTestOn 17 packagePlatforms 18 pkgs 19 ; 20in 21 22mapTestOn { 23 rPackages = packagePlatforms pkgs.rPackages; 24}