]> source.dussan.org Git - nextcloud-server.git/commitdiff
CI MariaDB 10.4 15326/head
authorRoeland Jago Douma <roeland@famdouma.nl>
Wed, 1 May 2019 13:48:12 +0000 (15:48 +0200)
committerRoeland Jago Douma <roeland@famdouma.nl>
Wed, 1 May 2019 13:48:12 +0000 (15:48 +0200)
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
.drone.yml

index 7dd509cbb09dd2d5f742de3e74067960b8672c2b..673162830be1040c224087376bc640b985978d93 100644 (file)
@@ -535,6 +535,41 @@ trigger:
     - pull_request
     - push
 
+---
+kind: pipeline
+name: mariadb10.4-php7.1
+
+steps:
+- name: submodules
+  image: docker:git
+  commands:
+    - git submodule update --init
+- name: mariadb10.4-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.4
+  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