mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Thanks to @clee2000 This is no longer required since the docker images use hash as tag: https://github.com/pytorch/pytorch/actions/runs/15844298044/job/44662813176#step:15:92 ``` Login Succeeded ++ docker manifest inspect docker.io/pytorch/manylinux2_28-builder:cuda12.9-5011468da53e13424002bd211cc919a0ec0e8b09 ++ jq '[.layers[].size, .config.size] | add / 1024 / 1024' + IMAGE_SIZE=9322.26076889038 + echo 'Compressed size of image in MB: 9322.26076889038' + set -e + docker inspect --type=image docker.io/pytorch/manylinux2_28-builder:cuda12.9-5011468da53e13424002bd211cc919a0ec0e8b09 Compressed size of image in MB: 9322.26076[88](https://github.com/pytorch/pytorch/actions/runs/15844298044/job/44662813176#step:15:90)9038 + retry docker pull docker.io/pytorch/manylinux2_28-builder:cuda12.9-5011468da53e13424002bd211cc919a0ec0e8b09 + docker pull docker.io/pytorch/manylinux2_28-builder:cuda12.9-5011468da53e13424002bd211cc919a0ec0e8b09 cuda12.9-5011468da53e13424002bd211cc919a0ec0e8b09: Pulling from pytorch/manylinux2_28-builder ``` Pull Request resolved: https://github.com/pytorch/pytorch/pull/156737 Approved by: https://github.com/clee2000
18 lines
872 B
Markdown
18 lines
872 B
Markdown
# PyTorch release scripts performing branch cut and applying release only changes
|
|
|
|
These are a collection of scripts that are to be used for release activities.
|
|
|
|
> NOTE: All scripts should do no actual work unless the `DRY_RUN` environment variable is set
|
|
> to `disabled`.
|
|
> The basic idea being that there should be no potential to do anything dangerous unless
|
|
> `DRY_RUN` is explicitly set to `disabled`.
|
|
|
|
### Order of Execution
|
|
|
|
1. Run cut-release-branch.sh to cut the release branch
|
|
2. Run apply-release-changes.sh to apply release only changes to create a PR with release only changes similar to this [PR](https://github.com/pytorch/pytorch/pull/149056)
|
|
|
|
#### Promoting packages
|
|
|
|
Scripts for Promotion of PyTorch packages are under test-infra repository. Please follow [README.md](https://github.com/pytorch/test-infra/blob/main/release/README.md)
|