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 <roeland@famdouma.nl>2019-05-01 16:13:08 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-05-01 16:13:08 +0300
commit9198c86c1e13e0085d6685fcbe22c003ee5612dd (patch)
tree61dc3dfe96e7aa2bea2466e0f87082c9eb23b3a7 /.drone.yml
parentb527209766f893ff6d3a597b7039d0c601495661 (diff)
CI MariaDB 10.3
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
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 172c99e68a6..7dd509cbb09 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -502,6 +502,41 @@ trigger:
---
kind: pipeline
+name: mariadb10.3-php7.1
+
+steps:
+- name: submodules
+ image: docker:git
+ commands:
+ - git submodule update --init
+- name: mariadb10.3-php7.1
+ image: nextcloudci/php7.1:php7.1-16
+ commands:
+ - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb
+
+services:
+- name: cache
+ image: redis
+- name: mariadb
+ image: mariadb:10.3
+ environment:
+ MYSQL_ROOT_PASSWORD: owncloud
+ MYSQL_USER: oc_autotest
+ MYSQL_PASSWORD: owncloud
+ MYSQL_DATABASE: oc_autotest
+ tmpfs:
+ - /var/lib/mysql
+
+trigger:
+ branch:
+ - master
+ - stable*
+ event:
+ - pull_request
+ - push
+
+---
+kind: pipeline
name: mysql-php7.1
steps: