Skip to content

Commit

Permalink
Removed pecl_http for PHP5.3 and allow failures for 5.3 (since it's E…
Browse files Browse the repository at this point in the history
…OL anyway)
  • Loading branch information
basdenooijer committed Nov 12, 2014
1 parent c8a87dc commit a9d8a52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
- SYMFONY_VERSION=2.5.*

before_script:
- bash -c "if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != 'hhvm-nightly' ]; then printf '\n\n\n\n' | pecl install pecl_http-1.7.6; fi"
- bash -c "if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != 'hhvm-nightly' ] && [ $TRAVIS_PHP_VERSION != '5.3' ]; then printf '\n\n\n\n' | pecl install pecl_http-1.7.6; fi"
- composer require --prefer-source --dev symfony/event-dispatcher:${SYMFONY_VERSION}

script: vendor/bin/phpunit -c phpunit.xml.travis -v
Expand All @@ -25,5 +25,6 @@ after_script: vendor/bin/coveralls -v

matrix:
allow_failures:
- php: 5.3
- php: hhvm
- php: hhvm-nightly

0 comments on commit a9d8a52

Please sign in to comment.