Skip to content

Commit

Permalink
ci: increase GitHub Action timeout to 20 min
Browse files Browse the repository at this point in the history
Sadly, the timeout includes not only the time it takes to
run the test, but also the time it takes to allocate a machine on
GitHub to run the job, which is unpredicatable.

Increase the timeout to account for this new information.
  • Loading branch information
jozzsi authored and LaszloGombos committed Nov 13, 2024
1 parent 43d41a9 commit ee11b70
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# run this test on all containers
name: ${{ matrix.test }} on ${{ matrix.container }}
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 20
concurrency:
group: basic-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}
cancel-in-progress: true
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# run this test on all containers
name: ${{ matrix.test }} on ${{ matrix.container }}
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 20
concurrency:
group: basic-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}
cancel-in-progress: true
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
needs: basic
name: ${{ matrix.test }} on ${{ matrix.container }}
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 20
concurrency:
group: extended-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}
cancel-in-progress: true
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
needs: basic
name: ${{ matrix.test }} on ${{ matrix.container }}
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 20
concurrency:
group: extended-systemd-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}
cancel-in-progress: true
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
needs: basic
name: ${{ matrix.test }} on ${{ matrix.container }}
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 20
concurrency:
group: dracut-cpio-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}
cancel-in-progress: true
Expand All @@ -165,7 +165,7 @@ jobs:
needs: basic
name: ${{ matrix.test }} on ${{ matrix.container }} on arm64
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 20
concurrency:
group: arm64-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}
cancel-in-progress: true
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
# all nfs based on default networking
name: ${{ matrix.test }} on ${{ matrix.container }}
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 20
concurrency:
group: network-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}-${{ matrix.network }}
cancel-in-progress: true
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
# network-advanced:
# name: ${{ matrix.test }} on ${{ matrix.container }}
# runs-on: ubuntu-latest
# timeout-minutes: 10
# timeout-minutes: 20
# concurrency:
# group: network-iscsi-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}-${{ matrix.network }}
# cancel-in-progress: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manualtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
test:
needs: matrix
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 20
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}
cancel-in-progress: true
Expand Down

0 comments on commit ee11b70

Please sign in to comment.