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 15:41:25 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-05-01 15:41:25 +0300
commit5fe8cb6f865d437c510778da6a9d251ba5b0f304 (patch)
tree3ed5a2e4c199c0b10897cf9faf6c56cba14a1528 /.drone.yml
parent75505efb76b2aa09ab7af4f5fe3c8b270be4f821 (diff)
CI MariaDB 10.2
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index e7476467096..172c99e68a6 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -465,7 +465,40 @@ trigger:
- pull_request
- push
+---
+kind: pipeline
+name: mariadb10.2-php7.1
+
+steps:
+- name: submodules
+ image: docker:git
+ commands:
+ - git submodule update --init
+- name: mariadb10.2-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.2
+ 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