Skip to content

Commit 2c8f2e9

Browse files
committed
Increase job timeout for ASAN/UBSAN build
1 parent d9651a9 commit 2c8f2e9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/nightly_matrix.php

+1
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
}
5758
return $jobs;

.github/workflows/nightly.yml

+2
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,12 @@ jobs:
4141
debug: [true, false]
4242
name: ['']
4343
run_tests_parameters: ['']
44+
timeout_minutes: [360]
4445
zts: [true, false]
4546
include: ${{ fromJson(needs.GENERATE_MATRIX.outputs.matrix-include) }}
4647
name: "${{ matrix.branch.name }}_LINUX_X64${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
4748
runs-on: ubuntu-20.04
49+
timeout-minutes: ${{ matrix.timeout_minutes }}
4850
steps:
4951
- name: git checkout
5052
uses: actions/checkout@v2

0 commit comments

Comments
 (0)