Skip to content

Commit

Permalink
Set JIT settings in CI PHP configuration.
Browse files Browse the repository at this point in the history
Added `opcache.jit_buffer_size=0` and `opcache.jit=0` to the PHP ini values in the CI workflow. This ensures JIT compilation is effectively disabled during tests for consistency across environments.
  • Loading branch information
koriym committed Jan 2, 2025
1 parent 412c78a commit e2b3f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
with:
php-version: ${{ matrix.php-version }}
coverage: pcov
ini-values: zend.assertions=1
ini-values: zend.assertions=1, opcache.jit_buffer_size=0, opcache.jit=0

- name: Get composer cache directory
id: composer-cache
Expand Down

0 comments on commit e2b3f8c

Please sign in to comment.