diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-12-21 15:52:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-21 15:52:51 +0100 |
commit | d5036fd4af9cf29c666a526dfb03f7e261cbc951 (patch) | |
tree | 1df3dd0962b6227ded22e9e494f0786dd45ee089 | |
parent | 430b4718fbdbcf8fd3fb9b116df92fca6ee2d0e9 (diff) | |
parent | 2fc9265b038776998bc13885db932ba76d8a8f93 (diff) | |
download | nextcloud-server-d5036fd4af9cf29c666a526dfb03f7e261cbc951.tar.gz nextcloud-server-d5036fd4af9cf29c666a526dfb03f7e261cbc951.zip |
Merge pull request #2792 from nextcloud/update-drone-images
update drone images to latest version
-rw-r--r-- | .drone.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.drone.yml b/.drone.yml index cb43c7d8ba8..821062acc96 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,14 +13,14 @@ pipeline: matrix: TESTS: jsunit check-autoloader: - image: nextcloudci/php7.0:php7.0-6 + image: nextcloudci/php7.0:php7.0-7 commands: - bash ./build/autoloaderchecker.sh when: matrix: TESTS: check-autoloader app-check-code: - image: nextcloudci/php7.0:php7.0-6 + image: nextcloudci/php7.0:php7.0-7 commands: - ./occ app:check-code admin_audit - ./occ app:check-code comments @@ -33,14 +33,14 @@ pipeline: matrix: TESTS: app-check-code signed-off-check: - image: nextcloudci/php7.0:php7.0-6 + image: nextcloudci/php7.0:php7.0-7 commands: - php ./build/signed-off-checker.php when: matrix: TESTS: signed-off-check htaccess-checker: - image: nextcloudci/php7.0:php7.0-6 + image: nextcloudci/php7.0:php7.0-7 commands: - php ./build/htaccess-checker.php when: @@ -55,7 +55,7 @@ pipeline: matrix: TESTS: syntax-php5.6 syntax-php7.0: - image: nextcloudci/php7.0:php7.0-6 + image: nextcloudci/php7.0:php7.0-7 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 . @@ -139,7 +139,7 @@ pipeline: DB: NODB PHP: 5.6 nodb-php7.0: - image: nextcloudci/php7.0:php7.0-6 + image: nextcloudci/php7.0:php7.0-7 commands: - NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite when: @@ -163,7 +163,7 @@ pipeline: DB: sqlite PHP: 5.6 sqlite-php7.0: - image: nextcloudci/php7.0:php7.0-6 + image: nextcloudci/php7.0:php7.0-7 commands: - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite when: @@ -383,7 +383,7 @@ pipeline: matrix: TESTS: integration-transfer-ownership-features nodb-codecov: - image: nextcloudci/php7.0:php7.0-6 + image: nextcloudci/php7.0:php7.0-7 commands: - TEST_SELECTION=NODB ./autotest.sh sqlite - wget https://codecov.io/bash -O codecov.sh @@ -393,7 +393,7 @@ pipeline: matrix: TESTS: nodb-codecov db-codecov: - image: nextcloudci/php7.0:php7.0-6 + image: nextcloudci/php7.0:php7.0-7 commands: - TEST_SELECTION=QUICKDB ./autotest.sh sqlite - wget https://codecov.io/bash -O codecov.sh |