1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.1' into PHP-8.2

* PHP-8.1:
  [skip ci] Add --enable-zend-max-execution-timers to variation nightly build
This commit is contained in:
Ilija Tovilo
2025-09-11 15:00:08 +02:00
2 changed files with 5 additions and 0 deletions

View File

@@ -44,6 +44,9 @@ on:
skip_wordpress:
required: true
type: boolean
variation_enable_zend_max_execution_timers:
required: true
type: boolean
permissions:
contents: read
jobs:
@@ -199,6 +202,7 @@ jobs:
zts: true
configuration_parameters: >-
CFLAGS="-DZEND_RC_DEBUG=1 -DPROFITABILITY_CHECKS=0 -DZEND_VERIFY_FUNC_INFO=1 -DZEND_VERIFY_TYPE_INFERENCE"
${{ inputs.variation_enable_zend_max_execution_timers && '--enable-zend-max-execution-timers' || '' }}
run_tests_parameters: -d zend_test.observer.enabled=1 -d zend_test.observer.show_output=0
timeout_minutes: 360
test_function_jit: true

View File

@@ -64,4 +64,5 @@ jobs:
skip_laravel: ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
skip_symfony: ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
skip_wordpress: ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
variation_enable_zend_max_execution_timers: ${{ (matrix.branch.version[0] == 8 && matrix.branch.version[1] >= 3) || matrix.branch.version[0] >= 9 }}
secrets: inherit