Skip to content

Commit 5c12927

Browse files
committed
Fix
1 parent 7c02611 commit 5c12927

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/test-linux/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ runs:
4343
export TEST_PHP_JUNIT=junit.out.xml
4444
export STACK_LIMIT_DEFAULTS_CHECK=1
4545
sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \
46-
${{ inputs.jitType == 'disable' && '' || '--repeat 2' }}
46+
${{ inputs.jitType == 'disable' && '' || '--repeat 2' }} \
4747
-d opcache.jit=${{ inputs.jitType }} \
4848
-d opcache.protect_memory=1 \
4949
-d opcache.jit_buffer_size=64M \

.github/actions/test-macos/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
export TEST_PHP_JUNIT=junit.out.xml
2121
export STACK_LIMIT_DEFAULTS_CHECK=1
2222
sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \
23-
${{ inputs.jitType == 'disable' && '' || '--repeat 2' }}
23+
${{ inputs.jitType == 'disable' && '' || '--repeat 2' }} \
2424
-d opcache.jit=${{ inputs.jitType }} \
2525
-d opcache.protect_memory=1 \
2626
-d opcache.jit_buffer_size=64M \

0 commit comments

Comments
 (0)