diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-11 09:05:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 09:05:14 +0200 |
commit | 9277d242b0d528b93f5725d66eba24e2517dbb18 (patch) | |
tree | 8de22ac3acc2819e35b8916b0542aba777031a8c | |
parent | 793f53c94b694a5169aeeb72c6ce8d5216af9e49 (diff) | |
parent | 6680966f7c4402ea044108fad1592d55eba4148c (diff) | |
download | nextcloud-server-9277d242b0d528b93f5725d66eba24e2517dbb18.tar.gz nextcloud-server-9277d242b0d528b93f5725d66eba24e2517dbb18.zip |
Merge pull request #11746 from nextcloud/ci/php72-syntax
Add syntax ci job for php7.2
-rw-r--r-- | .drone.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 0e87b974696..8ca0e8a0bbf 100644 --- a/.drone.yml +++ b/.drone.yml @@ -81,6 +81,14 @@ pipeline: when: matrix: TESTS: syntax-php7.1 + syntax-php7.2: + image: nextcloudci/php7.2:php7.2-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 --exclude 3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/RiakCache.php . + when: + matrix: + TESTS: syntax-php7.2 phan: image: nextcloudci/php7.2:php7.2-12 commands: @@ -903,6 +911,7 @@ matrix: - TESTS: jsunit - TESTS: syntax-php7.0 - TESTS: syntax-php7.1 + - TESTS: syntax-php7.2 - TESTS: phan - TESTS: litmus-v1 - TESTS: litmus-v2 |