File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1+ extension = memcache.so
Original file line number Diff line number Diff line change @@ -13,11 +13,12 @@ matrix:
1313 fast_finish : true
1414
1515before_install :
16- - phpenv config-rm xdebug.ini
16+ - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi;'
1717 - pip install --user codecov
1818
1919before_script :
20- - echo "extension = memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
20+ # Need to activate memchache extension explictly to work with all versions.
21+ - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-add .travis-php.ini; fi;'
2122 - travis_retry composer self-update
2223 - travis_retry composer install --prefer-source --no-interaction
2324
You can’t perform that action at this time.
0 commit comments