diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2018-09-18 14:00:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-18 14:00:22 +0200 |
commit | 9bbb88a3d0ea6f9c8fe1e9259e420fbf4c3ddd06 (patch) | |
tree | 35f774b642aa6b136c961c6c79a14faa85d868f3 | |
parent | 7f6d42c26346e79160d3f4e02802eddf8057902f (diff) | |
parent | 254d7caab64f4c6a6e6201992f5536d78f10a8fb (diff) | |
download | nextcloud-server-9bbb88a3d0ea6f9c8fe1e9259e420fbf4c3ddd06.tar.gz nextcloud-server-9bbb88a3d0ea6f9c8fe1e9259e420fbf4c3ddd06.zip |
Merge pull request #11262 from nextcloud/drone-postgres-db-name
use a dummy database name for the default postgres database name
-rw-r--r-- | .drone.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index 2ac98e4523f..52690829b93 100644 --- a/.drone.yml +++ b/.drone.yml @@ -284,7 +284,7 @@ pipeline: image: nextcloudci/php7.1:php7.1-16 commands: - sleep 10 # gives the database enough time to initialize - - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql + - POSTGRES=${POSTGRES} NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql when: matrix: DB: postgres @@ -936,6 +936,7 @@ services: image: postgres:9 environment: - POSTGRES_USER=oc_autotest + - POSTGRES_DB=oc_autotest_dummy - POSTGRES_PASSWORD=owncloud tmpfs: - /var/lib/postgresql/data @@ -947,6 +948,7 @@ services: image: postgres:10 environment: - POSTGRES_USER=oc_autotest + - POSTGRES_DB=oc_autotest_dummy - POSTGRES_PASSWORD=owncloud tmpfs: - /var/lib/postgresql/data |