diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-05-01 15:51:54 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-05-01 16:56:57 +0200 |
commit | 11418a464c4a6124fc33c44bcb370a999a96c992 (patch) | |
tree | 6a5a8701191ceafe40d7aec97347a87f176b9e91 /.drone.yml | |
parent | 77fc4a3c395985b1902e1e202e11288a597759cc (diff) | |
download | nextcloud-server-11418a464c4a6124fc33c44bcb370a999a96c992.tar.gz nextcloud-server-11418a464c4a6124fc33c44bcb370a999a96c992.zip |
CI Postgres 11
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 7dd509cbb09..7d304d8bf95 100644 --- a/.drone.yml +++ b/.drone.yml @@ -777,6 +777,41 @@ trigger: --- kind: pipeline +name: postgres11-php7.1 + +steps: +- name: submodules + image: docker:git + commands: + - git submodule update --init +- name: postgres-php7.1 + image: nextcloudci/php7.1:php7.1-16 + commands: + - sleep 10 # gives the database enough time to initialize + - POSTGRES=11 NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql + +services: +- name: cache + image: redis +- name: postgres-11 + image: postgres:11 + environment: + POSTGRES_USER: oc_autotest + POSTGRES_DB: oc_autotest_dummy + POSTGRES_PASSWORD: owncloud + tmpfs: + - /var/lib/postgresql/data + +trigger: + branch: + - master + - stable* + event: + - pull_request + - push + +--- +kind: pipeline name: mysqlmb4-php7.1 steps: |