fixup! ci/check: group test-N derivations into one drv

This commit is contained in:
Matt Sturgeon 2025-05-25 18:21:01 +01:00
parent 88fd87bf53
commit f36263c712
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -28,7 +28,7 @@
let
pkgs = inputs.nixpkgs.legacyPackages.${system};
singleton = (builtins.head tests).value;
joined = pkgs.linkFarmFromDrvs group (builtins.listToAttrs tests);
joined = pkgs.linkFarm group (builtins.listToAttrs tests);
in
if builtins.length tests > 1 then joined else singleton
))