diff options
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index 6a171a23148..fe86379e1b0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -28,7 +28,7 @@ pipeline: matrix: TESTS: syntax-php5.6 syntax-php7.0: - image: nextcloudci/php7.0:php7.0-7 + image: nextcloudci/php7.0:php7.0-13 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 . @@ -43,6 +43,16 @@ pipeline: when: matrix: TESTS: syntax-php7.1 + phan: + image: nextcloudci/php7.0:php7.0-13 + commands: + - rm /etc/php/7.0/cli/conf.d/20-xdebug.ini + - composer install + - composer require --dev "etsy/phan:0.8.x-dev" + - ./lib/composer/etsy/phan/phan -k build/.phan/config.php + when: + matrix: + TESTS: phan litmus-v1: image: nextcloudci/litmus-php7.0:litmus-php7.0-4 commands: @@ -574,6 +584,7 @@ matrix: - TESTS: syntax-php5.6 - TESTS: syntax-php7.0 - TESTS: syntax-php7.1 + - TESTS: phan - TESTS: litmus-v1 - TESTS: litmus-v2 - TESTS: caldavtester-old-endpoint |