Skip to content

Commit 9f3fd4d

Browse files
committed
[RELEASE-ONLY CHANGES] Branch Cut for Release 2.13
1 parent 41b808e commit 9f3fd4d

9 files changed

Lines changed: 14 additions & 14 deletions

.github/workflows/_claude-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,4 @@ jobs:
192192
193193
- name: Upload usage metrics
194194
if: always()
195-
uses: pytorch/test-infra/.github/actions/upload-claude-usage@main
195+
uses: pytorch/test-infra/.github/actions/upload-claude-usage@release/2.13

.github/workflows/build-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
zlib-devel ncurses-devel libxml2-devel libedit-devel
7777
7878
- name: Setup uv and Python 3.12
79-
uses: pytorch/test-infra/.github/actions/setup-uv@main
79+
uses: pytorch/test-infra/.github/actions/setup-uv@release/2.13
8080
with:
8181
python-version: "3.12"
8282
activate-environment: true

.github/workflows/linux_job_v2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,11 @@ jobs:
179179
if: ${{ inputs.gpu-arch-type != 'rocm' && inputs.gpu-arch-type != 'xpu' }}
180180

181181
- name: Setup ROCM
182-
uses: pytorch/pytorch/.github/actions/setup-rocm@main
182+
uses: pytorch/pytorch/.github/actions/setup-rocm@release/2.13
183183
if: ${{ inputs.gpu-arch-type == 'rocm' }}
184184

185185
- name: Setup XPU
186-
uses: pytorch/pytorch/.github/actions/setup-xpu@main
186+
uses: pytorch/pytorch/.github/actions/setup-xpu@release/2.13
187187
if: ${{ inputs.gpu-arch-type == 'xpu' }}
188188

189189
- name: Setup SSH

.github/workflows/linux_job_v3.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
done
180180
181181
- name: Checkout repository (${{ inputs.repository || github.repository }}@${{ inputs.ref }})
182-
uses: pytorch/test-infra/.github/actions/checkout@main
182+
uses: pytorch/test-infra/.github/actions/checkout@release/2.13
183183
with:
184184
# Support the use case where we need to checkout someone's fork
185185
repository: ${{ inputs.repository || github.repository }}
@@ -200,7 +200,7 @@ jobs:
200200
path: ${{ runner.temp }}/artifacts/
201201

202202
- name: Export matrix variables (if any)
203-
uses: pytorch/test-infra/.github/actions/export-matrix-variables@main
203+
uses: pytorch/test-infra/.github/actions/export-matrix-variables@release/2.13
204204
if: ${{ inputs.binary-matrix != '' }}
205205
with:
206206
binary-matrix: ${{ inputs.binary-matrix }}
@@ -272,7 +272,7 @@ jobs:
272272
path: ${{ runner.temp }}/artifacts/
273273

274274
- name: Upload artifacts to S3 (if any)
275-
uses: pytorch/test-infra/.github/actions/upload-artifact-s3@main
275+
uses: pytorch/test-infra/.github/actions/upload-artifact-s3@release/2.13
276276
if: ${{ always() && inputs.upload-artifact != '' && inputs.upload-artifact-to-s3 }}
277277
with:
278278
retention-days: 14
@@ -282,7 +282,7 @@ jobs:
282282
path: ${{ runner.temp }}/artifacts/
283283

284284
- name: Upload documentation to S3 (if any)
285-
uses: pytorch/test-infra/.github/actions/upload-artifact-s3@main
285+
uses: pytorch/test-infra/.github/actions/upload-artifact-s3@release/2.13
286286
if: ${{ steps.check-artifacts.outputs.upload-docs == 1 && github.event.pull_request.number != '' }}
287287
with:
288288
retention-days: 14

.github/workflows/release-pytorch-post-branch-cut.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
Release-only changes for the release/${{ inputs.release_version }} branch.
9999
100100
This PR applies the following changes:
101-
- Updates workflow references from `@main` to `@release/${{ inputs.release_version }}`
101+
- Updates workflow references from `@release/2.13` to `@release/${{ inputs.release_version }}`
102102
- Updates templates with release branch references
103103
- Modifies binary build workflows for release
104104
- Pins unstable/disabled jobs and tests to current S3 versions

.github/workflows/validate-aarch64-linux-binaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ on:
9191

9292
jobs:
9393
generate-aarch64-linux-matrix:
94-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
94+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.13
9595
with:
9696
package-type: wheel
9797
os: linux-aarch64
@@ -105,7 +105,7 @@ jobs:
105105
strategy:
106106
matrix: ${{ fromJson(needs.generate-aarch64-linux-matrix.outputs.matrix) }}
107107
fail-fast: false
108-
uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@main
108+
uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@release/2.13
109109
name: ${{ matrix.build_name }}
110110
with:
111111
runner: ${{ matrix.validation_runner }}

.github/workflows/validate-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Validate binaries
33
# A reusable workflow that triggers a set of jobs that perform a smoke test / validation of pytorch binaries.
44
# Optionally restricts validation to the specified OS and channel.
55
# For the details about parameter values, see:
6-
# pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
6+
# pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.13
77
# For an example of the `workflow_call` usage see:
88
# https://github.com/pytorch/builder/pull/1144
99
on:

.github/workflows/validate-domain-library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Validate domain libary
33
# A reusable workflow that triggers a set of jobs that perform a smoke test / validation of pytorch binaries.
44
# Optionally restricts validation to the specified OS and channel.
55
# For the details about parameter values, see:
6-
# pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
6+
# pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.13
77
on:
88
workflow_call:
99
inputs:

.github/workflows/validate-linux-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
144144
# Validate binaries. Poetry-based validation now lives in the
145145
# standalone linux-poetry job below so Poetry's own ecosystem
146-
# churn (it was previously installed from poetry@main) cannot
146+
# churn (it was previously installed from poetry@release/2.13) cannot
147147
# flake the binary matrix.
148148
source ../../test-infra/.github/scripts/validate_binaries.sh
149149

0 commit comments

Comments
 (0)