2022-03-22 08:52:13 +01:00
|
|
|
{ system ? builtins.currentSystem, handleTestOn }:
|
|
|
|
let
|
|
|
|
supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
|
|
|
|
|
|
|
|
in
|
|
|
|
{
|
|
|
|
standard = handleTestOn supportedSystems ./standard.nix { inherit system; };
|
2024-02-16 19:29:30 +01:00
|
|
|
remote-databases = handleTestOn supportedSystems ./remote-databases.nix { inherit system; };
|
2022-03-22 08:52:13 +01:00
|
|
|
}
|