Skip to content

Commit 4210eb1

Browse files
authored
Disable Xdebug - travis does not support php 8.0 (nikic#193)
If tests don't work with Xdebug, that's an issue with Xdebug. (in php 8.1.0-dev, it's broken, which is normal due to rapid changes)
1 parent 58493b3 commit 4210eb1

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ indent_style = space
1515
[*.{md,php,phpt}]
1616
indent_size = 4
1717
indent_style = space
18+
[*.yml]
19+
indent_size = 2
20+
indent_style = space

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ php:
77
- 7.2
88
- 7.3
99
- 7.4
10+
# https://travis-ci.community/t/php-8-0-missing/10132
11+
# - 8.0snapshot
1012
- nightly
1113

1214
before_script:
15+
# Disable Xdebug because it should be unrelated to the functionality of php-ast being tested.
16+
# Xdebug will have issues as PHP 8.1.0-dev/nightly's internal functionality changes.
17+
- phpenv config-rm xdebug.ini || true
1318
- phpize
1419
- ./configure
1520
- make

0 commit comments

Comments
 (0)