Skip to content

Commit ab6f1ed

Browse files
authored
[Release-Only] Branch Cut - Bump vision Version 0.16.0 (#7913)
1 parent f1b4c7a commit ab6f1ed

16 files changed

+83
-84
lines changed

.github/workflows/build-cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
gpu-arch-type: cuda
2121
gpu-arch-version: "11.8"
2222
fail-fast: false
23-
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
23+
uses: pytorch/test-infra/.github/workflows/linux_job.yml@release/2.1
2424
with:
2525
repository: pytorch/vision
2626
runner: ${{ matrix.runner }}
@@ -42,7 +42,7 @@ jobs:
4242
- runner: macos-12
4343
- runner: macos-m1-12
4444
fail-fast: false
45-
uses: pytorch/test-infra/.github/workflows/macos_job.yml@main
45+
uses: pytorch/test-infra/.github/workflows/macos_job.yml@release/2.1
4646
with:
4747
repository: pytorch/vision
4848
runner: ${{ matrix.runner }}
@@ -65,7 +65,7 @@ jobs:
6565
gpu-arch-type: cuda
6666
gpu-arch-version: "11.8"
6767
fail-fast: false
68-
uses: pytorch/test-infra/.github/workflows/windows_job.yml@main
68+
uses: pytorch/test-infra/.github/workflows/windows_job.yml@release/2.1
6969
with:
7070
repository: pytorch/vision
7171
runner: ${{ matrix.runner }}

.github/workflows/build-conda-linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ on:
1515

1616
jobs:
1717
generate-matrix:
18-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
18+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.1
1919
with:
2020
package-type: conda
2121
os: linux
2222
test-infra-repository: pytorch/test-infra
23-
test-infra-ref: main
23+
test-infra-ref: release/2.1
2424
build:
2525
needs: generate-matrix
2626
strategy:
@@ -34,13 +34,13 @@ jobs:
3434
smoke-test-script: test/smoke_test.py
3535
package-name: torchvision
3636
name: ${{ matrix.repository }}
37-
uses: pytorch/test-infra/.github/workflows/build_conda_linux.yml@main
37+
uses: pytorch/test-infra/.github/workflows/build_conda_linux.yml@release/2.1
3838
with:
3939
conda-package-directory: ${{ matrix.conda-package-directory }}
4040
repository: ${{ matrix.repository }}
4141
ref: ""
4242
test-infra-repository: pytorch/test-infra
43-
test-infra-ref: main
43+
test-infra-ref: release/2.1
4444
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
4545
pre-script: ${{ matrix.pre-script }}
4646
post-script: ${{ matrix.post-script }}

.github/workflows/build-conda-m1.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ on:
1515

1616
jobs:
1717
generate-matrix:
18-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
18+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.1
1919
with:
2020
package-type: conda
2121
os: macos-arm64
2222
test-infra-repository: pytorch/test-infra
23-
test-infra-ref: main
23+
test-infra-ref: release/2.1
2424
build:
2525
needs: generate-matrix
2626
strategy:
@@ -34,13 +34,13 @@ jobs:
3434
smoke-test-script: test/smoke_test.py
3535
package-name: torchvision
3636
name: ${{ matrix.repository }}
37-
uses: pytorch/test-infra/.github/workflows/build_conda_macos.yml@main
37+
uses: pytorch/test-infra/.github/workflows/build_conda_macos.yml@release/2.1
3838
with:
3939
conda-package-directory: ${{ matrix.conda-package-directory }}
4040
repository: ${{ matrix.repository }}
4141
ref: ""
4242
test-infra-repository: pytorch/test-infra
43-
test-infra-ref: main
43+
test-infra-ref: release/2.1
4444
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
4545
pre-script: ${{ matrix.pre-script }}
4646
post-script: ${{ matrix.post-script }}

.github/workflows/build-conda-macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ on:
1515

1616
jobs:
1717
generate-matrix:
18-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
18+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.1
1919
with:
2020
package-type: conda
2121
os: macos
2222
test-infra-repository: pytorch/test-infra
23-
test-infra-ref: main
23+
test-infra-ref: release/2.1
2424
build:
2525
needs: generate-matrix
2626
strategy:
@@ -34,13 +34,13 @@ jobs:
3434
smoke-test-script: test/smoke_test.py
3535
package-name: torchvision
3636
name: ${{ matrix.repository }}
37-
uses: pytorch/test-infra/.github/workflows/build_conda_macos.yml@main
37+
uses: pytorch/test-infra/.github/workflows/build_conda_macos.yml@release/2.1
3838
with:
3939
conda-package-directory: ${{ matrix.conda-package-directory }}
4040
repository: ${{ matrix.repository }}
4141
ref: ""
4242
test-infra-repository: pytorch/test-infra
43-
test-infra-ref: main
43+
test-infra-ref: release/2.1
4444
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
4545
pre-script: ${{ matrix.pre-script }}
4646
post-script: ${{ matrix.post-script }}

.github/workflows/build-conda-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ on:
1515

1616
jobs:
1717
generate-matrix:
18-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
18+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.1
1919
with:
2020
package-type: conda
2121
os: windows
2222
test-infra-repository: pytorch/test-infra
23-
test-infra-ref: main
23+
test-infra-ref: release/2.1
2424
build:
2525
needs: generate-matrix
2626
strategy:
@@ -34,13 +34,13 @@ jobs:
3434
smoke-test-script: test/smoke_test.py
3535
package-name: torchvision
3636
name: ${{ matrix.repository }}
37-
uses: pytorch/test-infra/.github/workflows/build_conda_windows.yml@main
37+
uses: pytorch/test-infra/.github/workflows/build_conda_windows.yml@release/2.1
3838
with:
3939
conda-package-directory: ${{ matrix.conda-package-directory }}
4040
repository: ${{ matrix.repository }}
4141
ref: ""
4242
test-infra-repository: pytorch/test-infra
43-
test-infra-ref: main
43+
test-infra-ref: release/2.1
4444
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
4545
pre-script: ${{ matrix.pre-script }}
4646
post-script: ${{ matrix.post-script }}

.github/workflows/build-wheels-aarch64-linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ on:
1515

1616
jobs:
1717
generate-matrix:
18-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
18+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.1
1919
with:
2020
package-type: wheel
2121
os: linux-aarch64
2222
test-infra-repository: pytorch/test-infra
23-
test-infra-ref: main
23+
test-infra-ref: release/2.1
2424
with-cuda: disable
2525
build:
2626
needs: generate-matrix
@@ -34,12 +34,12 @@ jobs:
3434
smoke-test-script: test/smoke_test.py
3535
package-name: torchvision
3636
name: ${{ matrix.repository }}
37-
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
37+
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@release/2.1
3838
with:
3939
repository: ${{ matrix.repository }}
4040
ref: ""
4141
test-infra-repository: pytorch/test-infra
42-
test-infra-ref: main
42+
test-infra-ref: release/2.1
4343
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
4444
pre-script: ${{ matrix.pre-script }}
4545
post-script: ${{ matrix.post-script }}

.github/workflows/build-wheels-linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ on:
1515

1616
jobs:
1717
generate-matrix:
18-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
18+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.1
1919
with:
2020
package-type: wheel
2121
os: linux
2222
test-infra-repository: pytorch/test-infra
23-
test-infra-ref: main
23+
test-infra-ref: release/2.1
2424
build:
2525
needs: generate-matrix
2626
strategy:
@@ -33,12 +33,12 @@ jobs:
3333
smoke-test-script: test/smoke_test.py
3434
package-name: torchvision
3535
name: ${{ matrix.repository }}
36-
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
36+
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@release/2.1
3737
with:
3838
repository: ${{ matrix.repository }}
3939
ref: ""
4040
test-infra-repository: pytorch/test-infra
41-
test-infra-ref: main
41+
test-infra-ref: release/2.1
4242
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
4343
pre-script: ${{ matrix.pre-script }}
4444
post-script: ${{ matrix.post-script }}

.github/workflows/build-wheels-m1.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ on:
1515

1616
jobs:
1717
generate-matrix:
18-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
18+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.1
1919
with:
2020
package-type: wheel
2121
os: macos-arm64
2222
test-infra-repository: pytorch/test-infra
23-
test-infra-ref: main
23+
test-infra-ref: release/2.1
2424
build:
2525
needs: generate-matrix
2626
strategy:
@@ -33,12 +33,12 @@ jobs:
3333
smoke-test-script: test/smoke_test.py
3434
package-name: torchvision
3535
name: ${{ matrix.repository }}
36-
uses: pytorch/test-infra/.github/workflows/build_wheels_macos.yml@main
36+
uses: pytorch/test-infra/.github/workflows/build_wheels_macos.yml@release/2.1
3737
with:
3838
repository: ${{ matrix.repository }}
3939
ref: ""
4040
test-infra-repository: pytorch/test-infra
41-
test-infra-ref: main
41+
test-infra-ref: release/2.1
4242
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
4343
pre-script: ${{ matrix.pre-script }}
4444
post-script: ${{ matrix.post-script }}

.github/workflows/build-wheels-macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ on:
1515

1616
jobs:
1717
generate-matrix:
18-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
18+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.1
1919
with:
2020
package-type: wheel
2121
os: macos
2222
test-infra-repository: pytorch/test-infra
23-
test-infra-ref: main
23+
test-infra-ref: release/2.1
2424
build:
2525
needs: generate-matrix
2626
strategy:
@@ -33,12 +33,12 @@ jobs:
3333
smoke-test-script: test/smoke_test.py
3434
package-name: torchvision
3535
name: ${{ matrix.repository }}
36-
uses: pytorch/test-infra/.github/workflows/build_wheels_macos.yml@main
36+
uses: pytorch/test-infra/.github/workflows/build_wheels_macos.yml@release/2.1
3737
with:
3838
repository: ${{ matrix.repository }}
3939
ref: ""
4040
test-infra-repository: pytorch/test-infra
41-
test-infra-ref: main
41+
test-infra-ref: release/2.1
4242
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
4343
pre-script: ${{ matrix.pre-script }}
4444
post-script: ${{ matrix.post-script }}

.github/workflows/build-wheels-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ on:
1515

1616
jobs:
1717
generate-matrix:
18-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
18+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.1
1919
with:
2020
package-type: wheel
2121
os: windows
2222
test-infra-repository: pytorch/test-infra
23-
test-infra-ref: main
23+
test-infra-ref: release/2.1
2424
build:
2525
needs: generate-matrix
2626
strategy:
@@ -34,12 +34,12 @@ jobs:
3434
smoke-test-script: test/smoke_test.py
3535
package-name: torchvision
3636
name: ${{ matrix.repository }}
37-
uses: pytorch/test-infra/.github/workflows/build_wheels_windows.yml@main
37+
uses: pytorch/test-infra/.github/workflows/build_wheels_windows.yml@release/2.1
3838
with:
3939
repository: ${{ matrix.repository }}
4040
ref: ""
4141
test-infra-repository: pytorch/test-infra
42-
test-infra-ref: main
42+
test-infra-ref: release/2.1
4343
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
4444
pre-script: ${{ matrix.pre-script }}
4545
env-script: ${{ matrix.env-script }}

0 commit comments

Comments
 (0)