Skip to content

Commit acdf5a1

Browse files
committed
Temporarily skip Xdebug on PHP 8.4 due to segfault
1 parent 39aa211 commit acdf5a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: shivammathur/setup-php@v2
2626
with:
2727
php-version: ${{ matrix.php }}
28-
coverage: xdebug
28+
coverage: ${{ matrix.php < 8.4 && 'xdebug' || 'xdebug-stable' }} # temporarily skip Xdebug on PHP 8.4 due to segfault
2929
ini-file: development
3030
- run: composer install
3131
- run: docker run --net=host -d redis
@@ -34,6 +34,7 @@ jobs:
3434
- run: REDIS_URI=localhost:6379 vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml -c phpunit.xml.legacy
3535
if: ${{ matrix.php < 7.3 }}
3636
- name: Check 100% code coverage
37+
if: ${{ matrix.php < 8.4 }} # temporarily skip on PHP 8.4 due to Xdebug segfault
3738
shell: php {0}
3839
run: |
3940
<?php

0 commit comments

Comments
 (0)