CI MariaDB 10.4

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2019-05-01 15:48:12 +02:00
parent 77fc4a3c39
commit f99537387b
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 35 additions and 0 deletions

View 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