diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-05-01 14:39:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-01 14:39:39 +0200 |
commit | 75505efb76b2aa09ab7af4f5fe3c8b270be4f821 (patch) | |
tree | 08b0c2c4cb7012efcb4ed6b43cf6bfb485e483f5 /.drone.yml | |
parent | 119691d00e8433e967e073f0bd9103f5bb4c0335 (diff) | |
parent | 2203eda9f520a3af059194ac8e8715844331625c (diff) | |
download | nextcloud-server-75505efb76b2aa09ab7af4f5fe3c8b270be4f821.tar.gz nextcloud-server-75505efb76b2aa09ab7af4f5fe3c8b270be4f821.zip |
Merge pull request #15321 from nextcloud/ci/mariadb-10.1
Add mariadb 10.1 CI job
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 8be64bf5d81..e7476467096 100644 --- a/.drone.yml +++ b/.drone.yml @@ -430,6 +430,41 @@ trigger: - pull_request - push +--- +kind: pipeline +name: mariadb10.1-php7.1 + +steps: +- name: submodules + image: docker:git + commands: + - git submodule update --init +- name: mariadb10.1-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.1 + 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 + --- |