make ci.ni "all" a derivation

this is to stop hydra complaining
This commit is contained in:
Daniel Barlow 2024-10-06 18:04:56 +01:00
parent 3d611d3ba2
commit f1c260d4f7
1 changed files with 4 additions and 1 deletions

5
ci.nix
View File

@ -72,5 +72,8 @@ let
}; };
in jobs // in jobs //
{ {
all = pkgs.lib.collect pkgs.lib.isDerivation jobs; all = pkgs.mkShell {
name = "all tests";
contents = pkgs.lib.collect pkgs.lib.isDerivation jobs;
};
} }