소스 검색

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

Michele Caini 2 년 전
부모
커밋
4670a939bf
3개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  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