diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-07-31 16:18:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-31 16:18:48 +0200 |
commit | 973b859cdd0d815547f6e3d876d04ae56e2de4ff (patch) | |
tree | f2a61b7001bc44603578f0d77faddf8133ae967d | |
parent | 7b2c08a31a102722c02f1546ecea9af378c9a3dd (diff) | |
parent | 8a3f3e8c4a029b2e395665f4e37bb820844c517b (diff) | |
download | nextcloud-server-973b859cdd0d815547f6e3d876d04ae56e2de4ff.tar.gz nextcloud-server-973b859cdd0d815547f6e3d876d04ae56e2de4ff.zip |
Merge pull request #5910 from benediktg/test-php-7.1
Also test PHP 7.0 with PostgreSQL
-rw-r--r-- | .drone.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 8630b0ebb27..11bc75092d5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -210,6 +210,15 @@ pipeline: matrix: DB: postgres PHP: 5.6 + postgres-php7.0: + image: nextcloudci/php7.0:php7.0-13 + commands: + - sleep 10 # gives the database enough time to initialize + - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql + when: + matrix: + DB: postgres + PHP: 7.0 mysqlmb4-php5.6: image: nextcloudci/php5.6:php5.6-7 commands: @@ -571,6 +580,9 @@ matrix: - DB: postgres PHP: 5.6 ENABLE_REDIS: true + - DB: postgres + PHP: 7.0 + ENABLE_REDIS: true - DB: mysqlmb4 PHP: 5.6 ENABLE_REDIS: true |