diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-08-10 13:46:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-10 13:46:25 +0200 |
commit | cc0c430d2557b3ecf5d6062c6834a179cf2fd28e (patch) | |
tree | a50b35298bff9cc9a9699dabd1f4f98061ceb04c /.drone.yml | |
parent | 3dc1bcd4c1918898808c0d97e2771229cc4331b9 (diff) | |
parent | 7904404842658e30bdf8c9cb61f1e821c62c5394 (diff) | |
download | nextcloud-server-cc0c430d2557b3ecf5d6062c6834a179cf2fd28e.tar.gz nextcloud-server-cc0c430d2557b3ecf5d6062c6834a179cf2fd28e.zip |
Merge pull request #6056 from nextcloud/mysql5.6
Add CI job for mysql 5.6
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index ec43119585f..86f18ab59e4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -235,6 +235,30 @@ pipeline: matrix: DB: mysql PHP: 7.1 + mysql5.6-php5.6: + image: nextcloudci/php5.6:php5.6-7 + commands: + - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql + when: + matrix: + DB: mysql5.6 + PHP: 5.6 + mysql5.6-php7.0: + image: nextcloudci/php7.0:php7.0-13 + commands: + - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql + when: + matrix: + DB: mysql5.6 + PHP: "7.0" + mysql5-6-php7.1: + image: nextcloudci/php7.1:php7.1-12 + commands: + - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql + when: + matrix: + DB: mysql5.6 + PHP: 7.1 postgres-php5.6: image: nextcloudci/php5.6:php5.6-7 commands: @@ -638,6 +662,15 @@ matrix: - DB: mysql PHP: 7.1 ENABLE_REDIS: true + - DB: mysql5.6 + PHP: 5.6 + ENABLE_REDIS: true + - DB: mysql5.6 + PHP: 7.0 + ENABLE_REDIS: true + - DB: mysql5.6 + PHP: 7.1 + ENABLE_REDIS: true - DB: postgres PHP: 5.6 ENABLE_REDIS: true @@ -728,7 +761,7 @@ services: matrix: DB: postgres mysql: - image: mysql + image: mysql:5.7 environment: - MYSQL_ROOT_PASSWORD=owncloud - MYSQL_USER=oc_autotest @@ -737,6 +770,16 @@ services: when: matrix: DB: mysql + mysql: + image: mysql:5.6 + environment: + - MYSQL_ROOT_PASSWORD=owncloud + - MYSQL_USER=oc_autotest + - MYSQL_PASSWORD=owncloud + - MYSQL_DATABASE=oc_autotest + when: + matrix: + DB: mysql5.6 mysqlmb4: image: mysql environment: |