8000 [travis] Disable xdebug on PHP7 · jeremyFreeAgent/symfony@dfda5ce · GitHub
[go: up one dir, main page]

Skip to content

Commit dfda5ce

Browse files
[travis] Disable xdebug on PHP7
1 parent 03eb2e9 commit dfda5ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ before_install:
3636
- echo "memory_limit = -1" >> $INI_FILE
3737
- echo "session.gc_probability = 0" >> $INI_FILE
3838
- if [ "$deps" != "skip" ]; then composer self-update; fi;
39-
- if [[ "$TRAVIS_PHP_VERSION" = 5.* ]]; then phpenv config-rm xdebug.ini; fi;
39+
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi;
4040
- if [[ "$TRAVIS_PHP_VERSION" = 5.* ]]; then echo "extension = mongo.so" >> $INI_FILE; fi;
4141
- if [[ "$TRAVIS_PHP_VERSION" = 5.* ]]; then echo "extension = memcache.so" >> $INI_FILE; fi;
4242
- if [[ "$TRAVIS_PHP_VERSION" = 5.* ]]; then (echo yes | pecl install -f apcu-4.0.7 && echo "apc.enable_cli = 1" >> $INI_FILE) || echo "Let's continue without apcu extension"; fi;

0 commit comments

Comments
 (0)
0