Revert "Binary upload checksum (#144887)"

This reverts commit 2efa98d69d362e4ee6f15938ec8ded30bf5c40fd.

Reverted https://github.com/pytorch/pytorch/pull/144887 on behalf of https://github.com/atalman due to Broke nightly index ([comment](https://github.com/pytorch/pytorch/pull/144887#issuecomment-2610066277))
This commit is contained in:
PyTorch MergeBot
2025-01-23 15:10:42 +00:00
parent 0802e78315
commit 768ad0886f

View File

@ -58,7 +58,7 @@ s3_upload() {
for pkg in ${PKG_DIR}/*.${extension}; do
(
set -x
${AWS_S3_CP} --no-progress --acl public-read "${pkg}" "${s3_upload_dir}" --checksum-algorithm SHA256
${AWS_S3_CP} --no-progress --acl public-read "${pkg}" "${s3_upload_dir}"
)
done
)