From e2b3f8c2cb088753f16d99c2c389365f0b1aa066 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Thu, 2 Jan 2025 12:40:39 +0900 Subject: [PATCH] Set JIT settings in CI PHP configuration. 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. --- .github/workflows/continuous-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index fe1d4df..77daa53 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -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