From: Roeland Jago Douma Date: Wed, 1 May 2019 13:13:08 +0000 (+0200) Subject: CI MariaDB 10.3 X-Git-Tag: v17.0.0beta1~506^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9198c86c1e13e0085d6685fcbe22c003ee5612dd;p=nextcloud-server.git CI MariaDB 10.3 Signed-off-by: Roeland Jago Douma --- diff --git a/.drone.yml b/.drone.yml index 172c99e68a6..7dd509cbb09 100644 --- a/.drone.yml +++ b/.drone.yml @@ -500,6 +500,41 @@ trigger: - pull_request - push +--- +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