File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 29
29
# shellcheck disable=SC1090
30
30
source "${BUILD_ENV_FILE}"
31
31
32
- pip install awscli==1.37.0
32
+ pip install awscli==1.32.18
33
33
yum install -y jq
34
34
35
35
export AWS_ROLE_ARN="arn:aws:iam::749337293305:role/gha_workflow_nightly_build_wheels"
43
43
| jq -r '.value' > "${AWS_WEB_IDENTITY_TOKEN_FILE}"
44
44
45
45
for pkg in dist/*; do
46
- aws s3 cp "$pkg" "${PYTORCH_S3_BUCKET_PATH}" --acl public-read --checksum-algorithm SHA256
46
+ aws s3 cp "$pkg" "${PYTORCH_S3_BUCKET_PATH}" --acl public-read
47
47
done
Original file line number Diff line number Diff line change @@ -109,15 +109,15 @@ jobs:
109
109
# shellcheck disable=SC1090
110
110
source "${BUILD_ENV_FILE}"
111
111
112
- pip install awscli==1.37.0
112
+ pip install awscli==1.32.18
113
113
114
114
AWS_CMD="aws s3 cp --dryrun"
115
115
if [[ "${NIGHTLY_OR_TEST:-0}" == "1" ]]; then
116
116
AWS_CMD="aws s3 cp"
117
117
fi
118
118
119
119
for pkg in dist/*; do
120
- ${AWS_CMD} "$pkg" "${PYTORCH_S3_BUCKET_PATH}" --acl public-read --checksum-algorithm SHA256
120
+ ${AWS_CMD} "$pkg" "${PYTORCH_S3_BUCKET_PATH}" --acl public-read
121
121
done
122
122
123
123
- name : Upload package to pypi
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ jobs:
112
112
- name : Upload files to s3
113
113
if : github.event_name != 'pull_request'
114
114
run : |
115
- python3 -mpip install awscli==1.37.0
115
+ python3 -mpip install awscli==1.27.69
116
116
117
117
aws s3 cp disabled-tests-condensed.json s3://ossci-metrics/disabled-tests-condensed.json
118
118
aws s3 cp disabled-jobs.json s3://ossci-metrics/disabled-jobs.json
You can’t perform that action at this time.
0 commit comments