diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-06-21 15:41:29 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-06-21 16:05:48 +0200 |
commit | 6583a2fef031fb9aafdc2dc1ab901e8780d45029 (patch) | |
tree | a9f3c84d9979ff46153d0ff745953a04a200ad84 /.drone.yml | |
parent | 097cba8b38331b578895cacb8cce9d2458a765cd (diff) | |
download | nextcloud-server-6583a2fef031fb9aafdc2dc1ab901e8780d45029.tar.gz nextcloud-server-6583a2fef031fb9aafdc2dc1ab901e8780d45029.zip |
Add postgres to CI
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 9fde7b6ce5b..4d0a0aba2a8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -17,7 +17,19 @@ build: - git submodule update --init - ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database sqlite --database-pass='' - ./autotest.sh sqlite + postgres: + image: morrisjobke/nextcloud-ci-php7:1.0 + commands: + - sleep 10 # gives the database enough time to initialize + - rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues + - git submodule update --init + - ./autotest.sh pgsql compose: cache: image: redis + postgres: + image: postgres + environment: + - POSTGRES_USER=oc_autotest + - POSTGRES_PASSWORD=oc_autotest |