diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-04-30 20:01:21 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-05-01 13:00:49 +0200 |
commit | 752718e833b3b08d47a0f38f475fad38b24b1827 (patch) | |
tree | d996720dbe3df2055c229a51bc3fd54feac77e6b /.drone.yml | |
parent | 5e8cedab9f7dddd06b6973a9bf355536fa2e063f (diff) | |
download | nextcloud-server-752718e833b3b08d47a0f38f475fad38b24b1827.tar.gz nextcloud-server-752718e833b3b08d47a0f38f475fad38b24b1827.zip |
Add mariadb 10.0 ci tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 9cc36d301c6..8be64bf5d81 100644 --- a/.drone.yml +++ b/.drone.yml @@ -397,6 +397,43 @@ trigger: --- kind: pipeline +name: mariadb10.0-php7.1 + +steps: +- name: submodules + image: docker:git + commands: + - git submodule update --init +- name: mariadb10.0-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.0 + 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: |