Skip to content

Commit edd6a9f

Browse files
Tune timeouts
It looks like both the Debian and Alpine builds take around 60 minutes to complete (it is the arm/v7 arch that takes this long), so let's set a timeout on 100 minutes. If it takes longer than that we can be quite confident in that something is stuck and will probably need a restart.
1 parent 07fd1c1 commit edd6a9f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919
docker_buildx_debian:
2020
runs-on: ubuntu-latest
21-
timeout-minutes: 90
21+
timeout-minutes: 100
2222
steps:
2323
- name: Run Docker on tmpfs
2424
uses: JonasAlfredsson/docker-on-tmpfs@v1.0.0
@@ -47,7 +47,7 @@ jobs:
4747

4848
docker_buildx_alpine:
4949
runs-on: ubuntu-latest
50-
timeout-minutes: 120
50+
timeout-minutes: 100
5151
steps:
5252
- name: Run Docker on tmpfs
5353
uses: JonasAlfredsson/docker-on-tmpfs@v1.0.0

.github/workflows/build_tags.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
docker_buildx_debian:
1212
runs-on: ubuntu-latest
13-
timeout-minutes: 90
13+
timeout-minutes: 100
1414
steps:
1515
- name: Run Docker on tmpfs
1616
uses: JonasAlfredsson/docker-on-tmpfs@v1.0.0
@@ -49,7 +49,7 @@ jobs:
4949
5050
docker_buildx_alpine:
5151
runs-on: ubuntu-latest
52-
timeout-minutes: 120
52+
timeout-minutes: 100
5353
steps:
5454
- name: Run Docker on tmpfs
5555
uses: JonasAlfredsson/docker-on-tmpfs@v1.0.0

0 commit comments

Comments
 (0)