summaryrefslogtreecommitdiffstats
path: root/.drone.jsonnet
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-12-02 20:58:59 +0100
committerJoas Schilling <coding@schilljs.com>2022-12-06 19:04:30 +0100
commit175b054efa40bd80cea19e4a68d8f829a3102ebd (patch)
tree0682013b63df92c4bb6a122c4f9f9bd158b8c546 /.drone.jsonnet
parente54e457da2e634b4ce2b73a9ba45f9ca57a13b6f (diff)
Adjust postgres database access
Following server example from https://github.com/nextcloud/server/pull/34645 Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.drone.jsonnet')
-rw-r--r--.drone.jsonnet4
1 files changed, 2 insertions, 2 deletions
diff --git a/.drone.jsonnet b/.drone.jsonnet
index 216a5637e..aee76528b 100644
--- a/.drone.jsonnet
+++ b/.drone.jsonnet
@@ -106,9 +106,9 @@ local PipelinePostgreSQL(test_set) = Pipeline(
image: "ghcr.io/nextcloud/continuous-integration-postgres-13:postgres-13",
environment: {
POSTGRES_USER: "oc_autotest",
- POSTGRES_DB: "oc_autotest_dummy",
+ POSTGRES_DB: "oc_autotest",
POSTGRES_HOST_AUTH_METHOD: "trust",
- POSTGRES_PASSWORD: ""
+ POSTGRES_PASSWORD: "owncloud"
},
tmpfs: [
"/var/lib/postgresql/data"