python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / nextcloud / default.nix
blob7dbdff9882387efda44ecb16c0a744f328a87299
1 { system ? builtins.currentSystem
2 , config ? { }
3 , pkgs ? import ../../.. { inherit system config; }
4 }:
6 with pkgs.lib;
8 foldl
9   (matrix: ver: matrix // {
10     "basic${toString ver}" = import ./basic.nix { inherit system pkgs; nextcloudVersion = ver; };
11     "with-postgresql-and-redis${toString ver}" = import ./with-postgresql-and-redis.nix {
12       inherit system pkgs;
13       nextcloudVersion = ver;
14     };
15     "with-mysql-and-memcached${toString ver}" = import ./with-mysql-and-memcached.nix {
16       inherit system pkgs;
17       nextcloudVersion = ver;
18     };
19     "with-declarative-redis-and-secrets${toString ver}" = import ./with-declarative-redis-and-secrets.nix {
20       inherit system pkgs;
21       nextcloudVersion = ver;
22     };
23   })
24 { }
25   [ 24 25 ]