diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-08-06 10:35:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-06 10:35:57 +0200 |
commit | 2d7e7212fa9b7cdd7b62b4369658b741bf72b380 (patch) | |
tree | 7f8dc887f78f767e586e2e08239773652341de14 /.drone.yml | |
parent | eb2442b871344b6ce62751ea49eaa8a193a7c6cf (diff) | |
parent | c0f9a397d767d20d9f3bf1335fa20a5f2f055d48 (diff) | |
download | nextcloud-server-2d7e7212fa9b7cdd7b62b4369658b741bf72b380.tar.gz nextcloud-server-2d7e7212fa9b7cdd7b62b4369658b741bf72b380.zip |
Merge pull request #5990 from nextcloud/drone_mysql_70
Also run mysql test on php7.0
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 11bc75092d5..a74cb335158 100644 --- a/.drone.yml +++ b/.drone.yml @@ -201,6 +201,14 @@ pipeline: matrix: DB: mysql PHP: 5.6 + mysql-php7.0: + image: nextcloudci/php7.0:php7.0-13 + commands: + - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql + when: + matrix: + DB: mysql + PHP: "7.0" postgres-php5.6: image: nextcloudci/php5.6:php5.6-7 commands: @@ -577,6 +585,9 @@ matrix: - DB: mysql PHP: 5.6 ENABLE_REDIS: true + - DB: mysql + PHP: 7.0 + ENABLE_REDIS: true - DB: postgres PHP: 5.6 ENABLE_REDIS: true |