Skip to content

Commit 62ab439

Browse files
committed
Adding timeout after finding out some windows debug builds were timing out
1 parent 8ad386e commit 62ab439

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pipeline.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
run: cmake --build build --parallel `nproc`
6363

6464
- name: Run tests
65+
timeout-minutes: 3
6566
env:
6667
CTEST_OUTPUT_ON_FAILURE: 1
6768
run: ctest --output-on-failure --test-dir build -j `nproc`
@@ -98,6 +99,7 @@ jobs:
9899
shell: cmd
99100

100101
- name: Run tests
102+
timeout-minutes: 3
101103
env:
102104
CTEST_OUTPUT_ON_FAILURE: 1
103105
working-directory: ${{runner.workspace}}
@@ -142,10 +144,11 @@ jobs:
142144
run: cmake --build build --parallel `sysctl -n hw.ncpu`
143145

144146
- name: Run tests
147+
timeout-minutes: 3
145148
env:
146149
CTEST_OUTPUT_ON_FAILURE: 1
147150
working-directory: ${{runner.workspace}}
148-
run: ctest --output-on-failure --test-dir build -j `sysctl -n hw.ncpu`
151+
run: ctest --output-on-failure --test-dir build -j `sysctl -n hw.ncpu` -V
149152

150153
format-check:
151154
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)