Skip to content

Commit

Permalink
Do not validate packages of type conda
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
afrittoli committed Nov 13, 2024
1 parent b8fe749 commit f3b3736
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate-linux-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
generate-linux-matrix:
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
with:
package-type: all
package-type: wheel,libtorch # We stopped producing conda nightlies
os: linux
channel: ${{ inputs.channel }}
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-macos-arm64-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
generate-macos-arm64-matrix:
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
with:
package-type: all
package-type: wheel,libtorch # We stopped producing conda nightlies
os: macos-arm64
channel: ${{ inputs.channel }}
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-windows-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
generate-windows-matrix:
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
with:
package-type: all
package-type: wheel,libtorch # We stopped producing conda nightlies
os: windows
channel: ${{ inputs.channel }}
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}
Expand Down

0 comments on commit f3b3736

Please sign in to comment.