summary refs log blame commit diff
path: root/nixos/tests/nextcloud/default.nix
blob: 65043e509b3b9fd5b5747340c978b5c8d71c9fb1 (plain) (tree)
1
2
3
4



                                                   
















                                                                                                 
{ system ? builtins.currentSystem,
  config ? {},
  pkgs ? import ../../.. { inherit system config; }
}:

with pkgs.lib;

foldl
  (matrix: ver: matrix // {
    "basic${toString ver}" = import ./basic.nix { inherit system pkgs; nextcloudVersion = ver; };
    "with-postgresql-and-redis${toString ver}" = import ./with-postgresql-and-redis.nix {
      inherit system pkgs;
      nextcloudVersion = ver;
    };
    "with-mysql-and-memcached${toString ver}" = import ./with-mysql-and-memcached.nix {
      inherit system pkgs;
      nextcloudVersion = ver;
    };
  })
  {}
  [ 20 21 22 ]