Skip to content

Commit becd6cd

Browse files
huydhnpytorchmergebot
authored andcommitted
Increase timeout value when pushing to ghcr.io (pytorch#161444)
Seeing this timing out a lots in trunk now https://github.com/pytorch/pytorch/actions/runs/17165552358/job/48705069047. The benchmark image is the largest one we have on CI, so it's probably over the 30 minutes limit. Pull Request resolved: pytorch#161444 Approved by: https://github.com/atalman
1 parent ec21caf commit becd6cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.ci/docker/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ If your new Docker image needs a library installed from a specific pinned commit
120120
If you're introducing a new argument to the Docker build, make sure to add it in the Docker build step in `.ci/docker/build.sh`:
121121
```bash
122122
docker build \
123-
....
124-
--build-arg "NEW_ARG_1=${NEW_ARG_1}"
123+
....
124+
--build-arg "NEW_ARG_1=${NEW_ARG_1}"
125125
```
126126

127127
3. **Update Dockerfile logic**:

.github/workflows/docker-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
GHCR_PAT: ${{ secrets.GHCR_PAT }}
125125
with:
126126
shell: bash
127-
timeout_minutes: 30
127+
timeout_minutes: 60
128128
max_attempts: 5
129129
retry_wait_seconds: 90
130130
command: |

0 commit comments

Comments
 (0)