We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 091cb44 commit 90f72e8Copy full SHA for 90f72e8
.github/workflows/ci.yml
@@ -530,8 +530,8 @@ jobs:
530
- name: CMake Workflow
531
uses: alandefreitas/cpp-actions/[email protected]
532
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' || '' }}
+ # Bump per-test timeout on Windows and for MSan jobs to avoid CTest default (1500s) killing slow golden suites.
+ CTEST_TEST_TIMEOUT: ${{ (runner.os == 'Windows' || matrix.msan == 'true') && '3600' || '' }}
535
with:
536
cmake-version: '>=3.26'
537
cxxstd: ${{ matrix.cxxstd }}
0 commit comments