nixos/nextcloud: run tests against each Nextcloud instance

This commit is contained in:
Maximilian Bosch 2021-10-01 17:03:32 +02:00
parent 66edc1e846
commit 10703a8c92
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E
4 changed files with 32 additions and 11 deletions

View file

@ -1,4 +1,6 @@
import ../make-test-python.nix ({ pkgs, ...}: let
args@{ pkgs, nextcloudVersion ? 22, ... }:
(import ../make-test-python.nix ({ pkgs, ...}: let
adminpass = "hunter2";
adminuser = "root";
in {
@ -18,6 +20,7 @@ in {
enable = true;
hostName = "nextcloud";
https = true;
package = pkgs.${"nextcloud" + (toString nextcloudVersion)};
caching = {
apcu = true;
redis = false;
@ -96,4 +99,4 @@ in {
"${withRcloneEnv} ${diffSharedFile}"
)
'';
})
})) args