Skip to content

Commit

Permalink
ci: use xdebug and disable zend.max_allowed_stack_size in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dirx committed Oct 23, 2024
1 parent 6de613c commit ccbd9c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: pcov
coverage: xdebug
extensions: ffi, pcntl
ini-values: "${{ matrix.php == '8.3' && 'zend.max_allowed_stack_size=256k' || '' }}"
ini-values: "${{ matrix.php == '8.3' && 'zend.max_allowed_stack_size=-1' || '' }}"

- name: Install dependencies
uses: ramsey/composer-install@v2
Expand Down
2 changes: 1 addition & 1 deletion resources/docker/php83-librdkafka-ffi/php.ini
Original file line number Diff line number Diff line change
@@ -1 +1 @@
zend.max_allowed_stack_size=256k
zend.max_allowed_stack_size=-1
2 changes: 1 addition & 1 deletion resources/docker/php84-librdkafka-ffi/php.ini
Original file line number Diff line number Diff line change
@@ -1 +1 @@
zend.max_allowed_stack_size=256k
zend.max_allowed_stack_size=-1

0 comments on commit ccbd9c4

Please sign in to comment.