We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24d6dce commit 234648eCopy full SHA for 234648e
.github/actions/test-macos/action.yml
@@ -6,6 +6,9 @@ inputs:
6
runTestsParameters:
7
default: ''
8
required: false
9
+ jitType:
10
+ default: 'disable'
11
+ required: false
12
runs:
13
using: composite
14
steps:
@@ -17,6 +20,7 @@ runs:
17
20
export TEST_PHP_JUNIT=junit.out.xml
18
21
export STACK_LIMIT_DEFAULTS_CHECK=1
19
22
sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \
23
+ -d opcache.jit=${{ inputs.jitType }} \
24
-d opcache.protect_memory=1 \
25
-d opcache.jit_buffer_size=64M \
26
-d opcache.jit_max_root_traces=1000000 \
0 commit comments