diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-09 22:08:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-09 22:08:02 +0200 |
commit | 3b955a16252a4581251368638038da11812fa94c (patch) | |
tree | 251257a05962eeebf645a2ed3e141ce9b4af5c9e /.drone.yml | |
parent | e08768ee04635d017a3f2f87e7ac6b1859f733dc (diff) | |
parent | c6f6413bb195f043e6054bc8b38dedcf1bfdf6cc (diff) | |
download | nextcloud-server-3b955a16252a4581251368638038da11812fa94c.tar.gz nextcloud-server-3b955a16252a4581251368638038da11812fa94c.zip |
Merge pull request #5791 from nextcloud/add-php7.2-tests
[CI] Add PHP 7.2 testing container
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index a8d1940d9de..0cfbe6403dc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -171,6 +171,14 @@ pipeline: matrix: DB: NODB PHP: 7.1 + nodb-php7.2: + image: nextcloudci/php7.2:php7.2-4 + commands: + - NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite + when: + matrix: + DB: NODB + PHP: 7.2 sqlite-php5.6: image: nextcloudci/php5.6:php5.6-7 commands: @@ -195,6 +203,14 @@ pipeline: matrix: DB: sqlite PHP: 7.1 + sqlite-php7.2: + image: nextcloudci/php7.2:php7.2-4 + commands: + - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite + when: + matrix: + DB: sqlite + PHP: 7.2 mysql-php5.6: image: nextcloudci/php5.6:php5.6-7 commands: @@ -599,6 +615,9 @@ matrix: - DB: NODB PHP: 7.1 ENABLE_REDIS: true + - DB: NODB + PHP: 7.2 + ENABLE_REDIS: false - DB: sqlite PHP: 5.6 ENABLE_REDIS: true @@ -608,6 +627,9 @@ matrix: - DB: sqlite PHP: 7.1 ENABLE_REDIS: true + - DB: sqlite + PHP: 7.2 + ENABLE_REDIS: false - DB: mysql PHP: 5.6 ENABLE_REDIS: true |