Browse Source

workflow: increase test timeout to avoid failures when the CI is particularly slow

Michele Caini 2 years ago
parent
commit
4670a939bf
3 changed files with 6 additions and 6 deletions
  1. 4 4
      .github/workflows/build.yml
  2. 1 1
      .github/workflows/coverage.yml
  3. 1 1
      .github/workflows/sanitizer.yml

+ 4 - 4
.github/workflows/build.yml

@@ -71,7 +71,7 @@ jobs:
       working-directory: build
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
-      run: ctest --timeout 30 -C Debug -j4
+      run: ctest --timeout 60 -C Debug -j4
 
   windows:
     timeout-minutes: 15
@@ -100,7 +100,7 @@ jobs:
       working-directory: build
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
-      run: ctest --timeout 30 -C Debug -j4
+      run: ctest --timeout 60 -C Debug -j4
 
   macos:
     timeout-minutes: 15
@@ -117,7 +117,7 @@ jobs:
       working-directory: build
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
-      run: ctest --timeout 30 -C Debug -j4
+      run: ctest --timeout 60 -C Debug -j4
 
   extra:
     timeout-minutes: 15
@@ -141,4 +141,4 @@ jobs:
       working-directory: build
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
-      run: ctest --timeout 30 -C Debug -j4
+      run: ctest --timeout 60 -C Debug -j4

+ 1 - 1
.github/workflows/coverage.yml

@@ -22,7 +22,7 @@ jobs:
       working-directory: build
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
-      run: ctest --timeout 30 -C Debug -j4
+      run: ctest --timeout 60 -C Debug -j4
     - name: Collect data
       working-directory: build
       run: |

+ 1 - 1
.github/workflows/sanitizer.yml

@@ -28,4 +28,4 @@ jobs:
       working-directory: build
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
-      run: ctest --timeout 30 -C Debug -j4
+      run: ctest --timeout 60 -C Debug -j4