File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed
Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -5,17 +5,17 @@ sudo: false
55matrix :
66 include :
77 - php : 5.5
8- env : COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=false
8+ env : COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=false IGNORE_PLATFORMS=false
99 - php : 5.6
10- env : COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=true
10+ env : COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=false IGNORE_PLATFORMS=false
1111 - php : 7.0
12- env : COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=false
12+ env : COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=false IGNORE_PLATFORMS=false
1313 - php : 7.1
14- env : COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=false
15- - php : 7.2
16- env : COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=false
17- - php : hhvm
18- env : COLLECT_COVERAGE=false VALIDATE_CODING_STYLE=false
14+ env : COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=true IGNORE_PLATFORMS= false
15+ - php : master
16+ env : COLLECT_COVERAGE=false VALIDATE_CODING_STYLE=false IGNORE_PLATFORMS=true
17+ allow_failures :
18+ - php : master
1919 fast_finish : true
2020
2121cache :
@@ -26,11 +26,12 @@ before_install:
2626 - travis_retry composer self-update
2727
2828install :
29- - travis_retry composer update --no-interaction --prefer-source
29+ - if [ "$IGNORE_PLATFORMS" == "true" ]; then travis_retry composer update --no-interaction --prefer-source --ignore-platform-reqs; fi
30+ - if [ "$IGNORE_PLATFORMS" == "false" ]; then travis_retry composer update --no-interaction --prefer-source; fi
3031
3132script :
3233 - composer phpunit
3334
3435after_script :
3536 - if [ "$COLLECT_COVERAGE" == "true" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/clover.xml; fi
36- - if [ "$VALIDATE_CODING_STYLE" == "true" ]; then composer phpcs fi
37+ - if [ "$VALIDATE_CODING_STYLE" == "true" ]; then composer phpcs; fi
You can’t perform that action at this time.
0 commit comments