Skip to content

Commit b2c8bdd

Browse files
committed
Merge branch 'PHP-8.4'
* PHP-8.4: [skip ci] Add --enable-zend-max-execution-timers to variation nightly build
2 parents 4cc395e + 04587e3 commit b2c8bdd

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/nightly.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ on:
4444
skip_wordpress:
4545
required: true
4646
type: boolean
47+
variation_enable_zend_max_execution_timers:
48+
required: true
49+
type: boolean
4750
permissions:
4851
contents: read
4952
jobs:
@@ -198,6 +201,7 @@ jobs:
198201
zts: true
199202
configuration_parameters: >-
200203
CFLAGS="-DZEND_RC_DEBUG=1 -DPROFITABILITY_CHECKS=0 -DZEND_VERIFY_FUNC_INFO=1 -DZEND_VERIFY_TYPE_INFERENCE"
204+
${{ inputs.variation_enable_zend_max_execution_timers && '--enable-zend-max-execution-timers' || '' }}
201205
run_tests_parameters: -d zend_test.observer.enabled=1 -d zend_test.observer.show_output=0
202206
timeout_minutes: 360
203207
test_function_jit: true

.github/workflows/root.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,5 @@ jobs:
6464
skip_laravel: ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
6565
skip_symfony: ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
6666
skip_wordpress: ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
67+
variation_enable_zend_max_execution_timers: ${{ (matrix.branch.version[0] == 8 && matrix.branch.version[1] >= 3) || matrix.branch.version[0] >= 9 }}
6768
secrets: inherit

0 commit comments

Comments
 (0)