PHP 5.2 is not supported by travis anymore

This commit is contained in:
Graham Campbell 2015-02-07 15:44:23 +00:00
parent dea916189f
commit e69cddae7d
2 changed files with 3 additions and 4 deletions

View File

@ -3,5 +3,5 @@ imports:
tools:
external_code_coverage:
runs: 5 # No Code Coverage on PHP 5.2 and HHVM
runs: 5 # No Code Coverage and HHVM
timeout: 2700 # 45 minutes

View File

@ -3,7 +3,6 @@ language: php
# When adding environments here, the number of runs specified in .scrutinizer.yml
# may have to be adjusted.
php:
- 5.2
- 5.3.3
- 5.3
- 5.4
@ -24,7 +23,7 @@ install:
- eval `ssh-agent -s`
- travis/setup-secure-shell.sh
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/install-php-extensions.sh; fi"
- sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' ]; then travis/setup-composer.sh; fi"
- travis/setup-composer.sh
script:
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' ]; then vendor/bin/phing -f build/build.xml sniff; fi"
@ -32,4 +31,4 @@ script:
after_success:
- sh -c "if $TRAVIS_SECURE_ENV_VARS; then travis/upload-code-coverage-html.sh; fi"
- sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' -a '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/upload-code-coverage-scrutinizer.sh; fi"
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/upload-code-coverage-scrutinizer.sh; fi"