diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-03-16 13:32:36 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-03-16 13:32:36 +0100 |
commit | ea9d225a1fa4cebe6abb35982c6ec4f902217a45 (patch) | |
tree | 5901bcc773052314ace23e317ad0f6e96e43ee80 /.travis.yml | |
parent | 2f5b929ee9bccc381455ab1034748c556c172fcc (diff) | |
download | nextcloud-server-ea9d225a1fa4cebe6abb35982c6ec4f902217a45.tar.gz nextcloud-server-ea9d225a1fa4cebe6abb35982c6ec4f902217a45.zip |
Exclude only known failing third-party files
This way we can also scan the third-party folder for incompatibilities with a used PHP version. Since there are some polyfills that would otherwise fail I had to exclude them manually here.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c00213975f9..c649c4d7f9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,7 @@ install: script: - - sh -c "if [ '$TC' = 'syntax' ]; then composer install && lib/composer/bin/parallel-lint --exclude lib/composer/jakub-onderka/ --exclude 3rdparty .; fi" + - sh -c "if [ '$TC' = 'syntax' ]; then 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/ .; fi" - sh -c "if [ '$TEST_DAV' != '1' ]; then echo \"Not testing DAV\"; fi" - sh -c "if [ '$TEST_DAV' = '1' ]; then echo \"Testing DAV\"; fi" |