From 9065bc3bd3dffc1a16a1c45644beb443fa8f3830 Mon Sep 17 00:00:00 2001 From: Rudolph Gottesheim Date: Thu, 18 Jul 2024 17:47:54 +0200 Subject: [PATCH 1/2] Try enabling the JIT --- .github/workflows/phpunit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 20f81aa..e82cd21 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -24,7 +24,7 @@ jobs: with: php-version: ${{ matrix.php }} tools: composer:v2 - ini-values: zend.assertions=1 + ini-values: zend.assertions=1, opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=64M - name: Get Composer cache directory id: composer-cache From 70f94095268fd421031e9498caff201d16ae96dc Mon Sep 17 00:00:00 2001 From: Rudolph Gottesheim Date: Thu, 18 Jul 2024 17:49:26 +0200 Subject: [PATCH 2/2] Disable JIT --- .github/workflows/phpunit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index e82cd21..fd4a170 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -24,7 +24,7 @@ jobs: with: php-version: ${{ matrix.php }} tools: composer:v2 - ini-values: zend.assertions=1, opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=64M + ini-values: zend.assertions=1 #, opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=64M - name: Get Composer cache directory id: composer-cache