We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0c59a4 commit 58f8210Copy full SHA for 58f8210
.github/workflows/build.yml
@@ -47,10 +47,15 @@ jobs:
47
run: brew install zip unzip p7zip
48
49
-
50
- name: Disable JIT for PHP 8
51
- if: matrix.php != '7.4'
+ name: Disable JIT for PHP 8 on Linux and Mac
+ if: (matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest') && matrix.php != '7.4'
52
run: echo "PHP_INI=\"${PHP_INI}, opcache.jit=0, opcache.jit_buffer_size=0\"" >> $GITHUB_ENV
53
54
+ -
55
+ name: Disable JIT for PHP 8 on Windows
56
+ if: matrix.os == 'windows-latest' && matrix.php != '7.4'
57
+ run: echo "PHP_INI=\"$PHP_INI, opcache.jit=0, opcache.jit_buffer_size=0\"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
58
+
59
60
name: Install PHP with extensions
61
uses: shivammathur/setup-php@v2
0 commit comments