Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-05-01 21:10:46 +0300
committerGitHub <noreply@github.com>2019-05-01 21:10:46 +0300
commit273eb646c492b6461c1588ec534523c38d0d6a84 (patch)
tree2c3759127dd9665b74abbb62ae9946791827016e /.drone.yml
parente018f0a1e908d1f4646ace09319750b2e81f885f (diff)
parent11418a464c4a6124fc33c44bcb370a999a96c992 (diff)
Merge pull request #15327 from nextcloud/ci/postgres-11
CI Postgres 11
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index 673162830be..2a0b6e2a0dd 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -812,6 +812,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: