about summary refs log tree commit diff
path: root/nixos/tests/web-apps/mastodon/default.nix
blob: 178590d13b63ca3d9c17a2ea4c2425933ae31b68 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ system ? builtins.currentSystem, handleTestOn }:
let
  supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];

in
{
  standard = handleTestOn supportedSystems ./standard.nix { inherit system; };
  remote-databases = handleTestOn supportedSystems ./remote-databases.nix { inherit system; };
}