Skip to content

Commit 67bacd4

Browse files
committed
Merge branch 'PHP-8.2'
* PHP-8.2: Increase job timeout for ASAN/UBSAN build
2 parents aba11b6 + 2dfb537 commit 67bacd4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/nightly_matrix.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ function get_matrix_include(array $branches) {
5252
'zts' => true,
5353
'configuration_parameters' => "CFLAGS='-fsanitize=undefined,address -DZEND_TRACK_ARENA_ALLOC' LDFLAGS='-fsanitize=undefined,address'",
5454
'run_tests_parameters' => '--asan',
55+
'timeout_minutes' => 480,
5556
];
5657
if ($branch['ref'] !== 'PHP-8.0') {
5758
$jobs[] = [
@@ -60,13 +61,15 @@ function get_matrix_include(array $branches) {
6061
'debug' => true,
6162
'zts' => false,
6263
'run_tests_parameters' => '--repeat 2',
64+
'timeout_minutes' => 360,
6365
];
6466
$jobs[] = [
6567
'name' => '_VARIATION',
6668
'branch' => $branch,
6769
'debug' => true,
6870
'zts' => true,
6971
'configuration_parameters' => "CFLAGS='-DZEND_RC_DEBUG=1 -DPROFITABILITY_CHECKS=0 -DZEND_VERIFY_FUNC_INFO=1'",
72+
'timeout_minutes' => 360,
7073
];
7174
}
7275
}

.github/workflows/nightly.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,12 @@ jobs:
4343
debug: [true, false]
4444
name: ['']
4545
run_tests_parameters: ['']
46+
timeout_minutes: [360]
4647
zts: [true, false]
4748
include: ${{ fromJson(needs.GENERATE_MATRIX.outputs.matrix-include) }}
4849
name: "${{ matrix.branch.name }}_LINUX_X64${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
4950
runs-on: ubuntu-20.04
51+
timeout-minutes: ${{ matrix.timeout_minutes }}
5052
steps:
5153
- name: git checkout
5254
uses: actions/checkout@v2

0 commit comments

Comments
 (0)