ソースを参照

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

Michele Caini 2 年 前
コミット
4670a939bf

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

@@ -71,7 +71,7 @@ jobs:
       working-directory: build
       working-directory: build
       env:
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
         CTEST_OUTPUT_ON_FAILURE: 1
-      run: ctest --timeout 30 -C Debug -j4
+      run: ctest --timeout 60 -C Debug -j4
 
 
   windows:
   windows:
     timeout-minutes: 15
     timeout-minutes: 15
@@ -100,7 +100,7 @@ jobs:
       working-directory: build
       working-directory: build
       env:
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
         CTEST_OUTPUT_ON_FAILURE: 1
-      run: ctest --timeout 30 -C Debug -j4
+      run: ctest --timeout 60 -C Debug -j4
 
 
   macos:
   macos:
     timeout-minutes: 15
     timeout-minutes: 15
@@ -117,7 +117,7 @@ jobs:
       working-directory: build
       working-directory: build
       env:
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
         CTEST_OUTPUT_ON_FAILURE: 1
-      run: ctest --timeout 30 -C Debug -j4
+      run: ctest --timeout 60 -C Debug -j4
 
 
   extra:
   extra:
     timeout-minutes: 15
     timeout-minutes: 15
@@ -141,4 +141,4 @@ jobs:
       working-directory: build
       working-directory: build
       env:
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
         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
       working-directory: build
       env:
       env:
         CTEST_OUTPUT_ON_FAILURE: 1
         CTEST_OUTPUT_ON_FAILURE: 1
-      run: ctest --timeout 30 -C Debug -j4
+      run: ctest --timeout 60 -C Debug -j4
     - name: Collect data
     - name: Collect data
       working-directory: build
       working-directory: build
       run: |
       run: |

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

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