Skip to content

Commit 2a29fe8

Browse files
committed
Relax GitHub Actions job timeouts
1 parent 89cadc5 commit 2a29fe8

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/deploy-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717
jobs:
1818
build:
1919
runs-on: ubuntu-latest
20-
timeout-minutes: 5
20+
timeout-minutes: 10
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v6
@@ -50,7 +50,7 @@ jobs:
5050
url: ${{ steps.deployment.outputs.page_url }}
5151
runs-on: ubuntu-latest
5252
needs: build
53-
timeout-minutes: 5
53+
timeout-minutes: 10
5454
steps:
5555
- name: Deploy to GitHub Pages
5656
id: deployment

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
jobs:
2121
release-state:
2222
runs-on: ubuntu-latest
23-
timeout-minutes: 5
23+
timeout-minutes: 10
2424
steps:
2525
- uses: actions/checkout@v6
2626
with:

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
jobs:
2121
precheck:
2222
runs-on: ubuntu-latest
23-
timeout-minutes: 5
23+
timeout-minutes: 10
2424

2525
steps:
2626
- uses: actions/checkout@v6
@@ -50,7 +50,7 @@ jobs:
5050
discover-standard-tests:
5151
needs: precheck
5252
runs-on: ubuntu-latest
53-
timeout-minutes: 5
53+
timeout-minutes: 10
5454
outputs:
5555
test-files: ${{ steps.set-matrix.outputs.test-files }}
5656

@@ -81,7 +81,7 @@ jobs:
8181
name: ${{ matrix.target.os }} py${{ matrix.target.python_version }} ${{ matrix.test.name }}
8282
needs: [precheck, discover-standard-tests]
8383
runs-on: ${{ matrix.target.os }}
84-
timeout-minutes: 5
84+
timeout-minutes: 10
8585
if: ${{ needs.discover-standard-tests.outputs.test-files != '[]' }}
8686
strategy:
8787
fail-fast: false
@@ -211,7 +211,7 @@ jobs:
211211
discover-live-tests:
212212
needs: precheck
213213
runs-on: ubuntu-latest
214-
timeout-minutes: 5
214+
timeout-minutes: 10
215215
outputs:
216216
live-tests: ${{ steps.set-matrix.outputs.live-tests }}
217217

@@ -253,7 +253,7 @@ jobs:
253253
name: ${{ matrix.live.name }}
254254
needs: [precheck, discover-live-tests]
255255
runs-on: ${{ matrix.live.os }}
256-
timeout-minutes: 5
256+
timeout-minutes: 10
257257
if: ${{ needs.discover-live-tests.outputs.live-tests != '[]' }}
258258
strategy:
259259
fail-fast: false

0 commit comments

Comments
 (0)