diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-07-20 08:45:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-20 08:45:52 +0200 |
commit | 5e468c0bbaf6b9838a1b92bcb04836dccff7b532 (patch) | |
tree | bd482a740ad7013a8e223b35897495b63855beec | |
parent | 26c42d3d30f48367b1ce111b522608fbc340d69e (diff) | |
parent | e215eabbf7068a6d66dfbf85e294a84c36c34f41 (diff) | |
download | nextcloud-server-5e468c0bbaf6b9838a1b92bcb04836dccff7b532.tar.gz nextcloud-server-5e468c0bbaf6b9838a1b92bcb04836dccff7b532.zip |
Merge pull request #5794 from nextcloud/update-php7.1-container
Update PHP 7.1 containers
-rw-r--r-- | .drone.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.drone.yml b/.drone.yml index fe86379e1b0..b8750e66f5e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -36,7 +36,7 @@ pipeline: matrix: TESTS: syntax-php7.0 syntax-php7.1: - image: nextcloudci/php7.1:php7.1-11 + image: nextcloudci/php7.1:php7.1-12 commands: - composer install - ./lib/composer/bin/parallel-lint --exclude lib/composer/jakub-onderka/ --exclude 3rdparty/symfony/polyfill-php70/Resources/stubs/ --exclude 3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/ --exclude 3rdparty/paragonie/random_compat/lib/ --exclude lib/composer/composer/autoload_static.php --exclude 3rdparty/composer/autoload_static.php . @@ -44,11 +44,11 @@ pipeline: matrix: TESTS: syntax-php7.1 phan: - image: nextcloudci/php7.0:php7.0-13 + image: nextcloudci/php7.1:php7.1-12 commands: - - rm /etc/php/7.0/cli/conf.d/20-xdebug.ini + - rm /etc/php/7.1/cli/conf.d/20-xdebug.ini - composer install - - composer require --dev "etsy/phan:0.8.x-dev" + - composer require --dev "etsy/phan:dev-master" - ./lib/composer/etsy/phan/phan -k build/.phan/config.php when: matrix: @@ -161,7 +161,7 @@ pipeline: DB: NODB PHP: "7.0" nodb-php7.1: - image: nextcloudci/php7.1:php7.1-11 + image: nextcloudci/php7.1:php7.1-12 commands: - NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite when: @@ -185,7 +185,7 @@ pipeline: DB: sqlite PHP: "7.0" sqlite-php7.1: - image: nextcloudci/php7.1:php7.1-11 + image: nextcloudci/php7.1:php7.1-12 commands: - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite when: |