Skip to content

Commit 90f72e8

Browse files
committed
ci: increase CTest timeout for MSan jobs
1 parent 091cb44 commit 90f72e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,8 @@ jobs:
530530
- name: CMake Workflow
531531
uses: alandefreitas/cpp-actions/[email protected]
532532
env:
533-
# Bump per-test timeout on Windows to avoid CTest default (1500s) killing slow golden suites.
534-
CTEST_TEST_TIMEOUT: ${{ runner.os == 'Windows' && '3600' || '' }}
533+
# Bump per-test timeout on Windows and for MSan jobs to avoid CTest default (1500s) killing slow golden suites.
534+
CTEST_TEST_TIMEOUT: ${{ (runner.os == 'Windows' || matrix.msan == 'true') && '3600' || '' }}
535535
with:
536536
cmake-version: '>=3.26'
537537
cxxstd: ${{ matrix.cxxstd }}

0 commit comments

Comments
 (0)