diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-05-01 15:48:12 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-05-01 15:48:12 +0200 |
commit | f99537387bae712da9d5db2a4a9624f1eff1db29 (patch) | |
tree | 835df830640ac2c86bd2c581a8e4781e77ae4603 /.drone.yml | |
parent | 77fc4a3c395985b1902e1e202e11288a597759cc (diff) | |
download | nextcloud-server-f99537387bae712da9d5db2a4a9624f1eff1db29.tar.gz nextcloud-server-f99537387bae712da9d5db2a4a9624f1eff1db29.zip |
CI MariaDB 10.4
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 7dd509cbb09..673162830be 100644 --- a/.drone.yml +++ b/.drone.yml @@ -537,6 +537,41 @@ trigger: --- 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 steps: |