Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 96ca1b8

Browse files
authored
Do not validate packages of type conda (#2037)
Conda nightlies have been deprecated and will be stopped soon https://dev-discuss.pytorch.org/t/pytorch-deprecation-of-conda-nightly-builds/2590 So we remove conda packages from the validation list. Signed-off-by: Andrea Frittoli <[email protected]>
1 parent 5354a64 commit 96ca1b8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
generate-linux-matrix:
121121
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
122122
with:
123-
package-type: all
123+
package-type: wheel,libtorch # We stopped producing conda nightlies
124124
os: linux
125125
channel: ${{ inputs.channel }}
126126
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}

.github/workflows/validate-macos-arm64-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
generate-macos-arm64-matrix:
9999
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
100100
with:
101-
package-type: all
101+
package-type: wheel,libtorch # We stopped producing conda nightlies
102102
os: macos-arm64
103103
channel: ${{ inputs.channel }}
104104
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
generate-windows-matrix:
9999
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
100100
with:
101-
package-type: all
101+
package-type: wheel,libtorch # We stopped producing conda nightlies
102102
os: windows
103103
channel: ${{ inputs.channel }}
104104
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}

0 commit comments

Comments
 (0)