Skip to content

Commit

Permalink
fix detecting php.ini location on HHVM builds
Browse files Browse the repository at this point in the history
Now, let's also make sure that HHVM builds do not fail anymore in the
future without us noticing that.
  • Loading branch information
xabbuh committed Oct 22, 2016
1 parent ee432e9 commit 93cf818
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Expand Up @@ -12,8 +12,6 @@ env:

matrix:
fast_finish: true
allow_failures:
- php: hhvm
include:
- php: 5.3
env: deps="low"
Expand All @@ -29,7 +27,8 @@ matrix:
- php: hhvm

before_install:
- echo memory_limit = -1 >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then INI_FILE=/etc/hhvm/php.ini; else INI_FILE=~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
- echo memory_limit = -1 >> $INI_FILE
- if [ "$COVERAGE" != "yes" -a "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi
- if [ "$SYMFONY_VERSION" != "" ]; then composer require symfony/symfony:${SYMFONY_VERSION} --dev --no-update; fi

Expand Down

0 comments on commit 93cf818

Please sign in to comment.