Skip to content

Commit 7e2de82

Browse files
authored
fix(ci): increase container image build timeout to 30m (#52318)
1 parent fca3f34 commit 7e2de82

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/cd-sandbox-base-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
contains(github.event.pull_request.labels.*.name, 'build-tasks-sandbox-image')
4141
)
4242
runs-on: ubuntu-latest
43-
timeout-minutes: 15
43+
timeout-minutes: 30
4444
permissions:
4545
contents: read
4646

.github/workflows/ci-nodejs-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
github.event_name == 'merge_group' ||
5555
(github.event_name == 'push' && github.ref == 'refs/heads/master' && needs.changes.outputs.node_files == 'true')
5656
runs-on: depot-ubuntu-latest
57-
timeout-minutes: 15
57+
timeout-minutes: 30
5858
permissions:
5959
id-token: write # allow issuing OIDC tokens for this workflow run
6060
contents: read # allow reading the repo contents

.github/workflows/ci-recording-rasterizer-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
github.event_name == 'workflow_dispatch' ||
6060
(github.event_name == 'push' && github.ref == 'refs/heads/master' && needs.changes.outputs.rasterizer_files == 'true')
6161
runs-on: depot-ubuntu-latest
62-
timeout-minutes: 15
62+
timeout-minutes: 30
6363
permissions:
6464
id-token: write # allow issuing OIDC tokens for this workflow run
6565
contents: read # allow reading the repo contents

.github/workflows/container-images-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
name: Build Docker image
3737
# run these on 4, if they're RAM constrained the FE build will fail randomly in Docker build
3838
runs-on: depot-ubuntu-latest-4
39-
timeout-minutes: 15
39+
timeout-minutes: 30
4040
permissions:
4141
id-token: write # allow issuing OIDC tokens for this workflow run
4242
contents: read # allow at least reading the repo contents, add other permissions if necessary

.github/workflows/rust-docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
type=semver,pattern={{version}}
2828
type=semver,pattern={{major}}.{{minor}}
2929
type=sha
30-
timeout-minutes: 15
30+
timeout-minutes: 30
3131
secrets: inherit
3232
permissions:
3333
id-token: write

0 commit comments

Comments
 (0)