Skip to content

Commit 12cdb56

Browse files
committed
Don't disable xdebug on nightly (not available there)
1 parent d1d08ab commit 12cdb56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ php:
55
- 7.1
66
- 7.2
77
- 7.3
8-
- 7.4snapshot
8+
- 7.4
99
- nightly
1010

1111
before_script:
1212
- phpize
1313
- ./configure --enable-scalar-objects
1414
- make
15-
- phpenv config-rm xdebug.ini
15+
- if [ $TRAVIS_PHP_VERSION != 'nightly' ]; then phpenv config-rm xdebug.ini; fi
1616

1717
script: REPORT_EXIT_STATUS=1 php run-tests.php -p `which php` --show-diff -d extension=`pwd`/modules/scalar_objects.so -q

0 commit comments

Comments
 (0)