diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-05-03 15:44:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-03 15:44:24 +0200 |
commit | a7a35d32fd04d7bdc27261a1fa4a51c91c0b2cab (patch) | |
tree | af76cedfcd54215a5b7d96ed952d1c41c9acf48f /.drone.yml | |
parent | bda7b4624122e58f82c649d694e0ef9ad700a619 (diff) | |
parent | 0aa490f1f8011099f452eb19d8b5ce091301537d (diff) | |
download | nextcloud-server-a7a35d32fd04d7bdc27261a1fa4a51c91c0b2cab.tar.gz nextcloud-server-a7a35d32fd04d7bdc27261a1fa4a51c91c0b2cab.zip |
Merge pull request #15311 from nextcloud/ci/mysql/8
Add mysql 8.0 CI run
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 42 |
1 files changed, 39 insertions, 3 deletions
diff --git a/.drone.yml b/.drone.yml index 2a0b6e2a0dd..c97f9bb9669 100644 --- a/.drone.yml +++ b/.drone.yml @@ -572,7 +572,43 @@ trigger: --- kind: pipeline -name: mysql-php7.1 +name: mysql8.0-php7.1 + +steps: +- name: submodules + image: docker:git + commands: + - git submodule update --init +- name: mysql-php7.1 + image: nextcloudci/php7.1:php7.1-16 + commands: + - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql + +services: +- name: cache + image: redis +- name: mysql + image: mysql:8.0 + command: [ "--default-authentication-plugin=mysql_native_password" ] + 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: mysql5.7-php7.1 steps: - name: submodules @@ -607,7 +643,7 @@ trigger: --- kind: pipeline -name: mysql-php7.2 +name: mysql5.7-php7.2 steps: - name: submodules @@ -640,7 +676,7 @@ trigger: --- kind: pipeline -name: mysql-php7.3 +name: mysql5.7-php7.3 steps: - name: submodules |