.github: Update s3 actions to include runAttempt
Updates our s3 actions to upload and download artifacts to versions that
include runAttempt in the prefix for the artifact. This change is mostly
to make it so that subsequent re-runs of a workflow do not attempt to
grab artifacts from previous runs
Coincides with:
* https://github.com/seemethere/upload-artifact-s3/pull/4
* https://github.com/seemethere/download-artifact-s3/pull/1
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Pull Request resolved: https://github.com/pytorch/pytorch/pull/74576
Approved by: https://github.com/malfet, https://github.com/janeyx99
diff --git a/.github/actions/download-build-artifacts/action.yml b/.github/actions/download-build-artifacts/action.yml
index 5e7afc1..a3c9444 100644
--- a/.github/actions/download-build-artifacts/action.yml
+++ b/.github/actions/download-build-artifacts/action.yml
@@ -15,7 +15,7 @@
steps:
- name: Download PyTorch Build Artifacts from S3
if: ${{ !inputs.use-gha }}
- uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ uses: seemethere/download-artifact-s3@v3
with:
name: ${{ inputs.name }}
diff --git a/.github/actions/upload-test-artifacts/action.yml b/.github/actions/upload-test-artifacts/action.yml
index 328f302..6527671 100644
--- a/.github/actions/upload-test-artifacts/action.yml
+++ b/.github/actions/upload-test-artifacts/action.yml
@@ -55,7 +55,7 @@
# S3 upload
- name: Store Test Downloaded JSONs on S3
- uses: seemethere/upload-artifact-s3@v3
+ uses: seemethere/upload-artifact-s3@v4
if: ${{ !inputs.use-gha }}
with:
retention-days: 14
@@ -63,7 +63,7 @@
path: test-jsons-*.zip
- name: Store Test Reports on S3
- uses: seemethere/upload-artifact-s3@v3
+ uses: seemethere/upload-artifact-s3@v4
if: ${{ !inputs.use-gha }}
with:
retention-days: 14
diff --git a/.github/templates/common.yml.j2 b/.github/templates/common.yml.j2
index 3fb606e..95cd87e 100644
--- a/.github/templates/common.yml.j2
+++ b/.github/templates/common.yml.j2
@@ -1,4 +1,4 @@
-{%- set upload_artifact_s3_action = "seemethere/upload-artifact-s3@v3" -%}
+{%- set upload_artifact_s3_action = "seemethere/upload-artifact-s3@v4" -%}
{# squid_proxy is an private ELB that only available for GHA custom runners #}
{%- set squid_proxy = "http://internal-tf-lb-20210727220640487900000002-835786077.us-east-1.elb.amazonaws.com:3128" -%}
diff --git a/.github/templates/linux_binary_build_workflow.yml.j2 b/.github/templates/linux_binary_build_workflow.yml.j2
index aab32fa..998b6a5 100644
--- a/.github/templates/linux_binary_build_workflow.yml.j2
+++ b/.github/templates/linux_binary_build_workflow.yml.j2
@@ -118,7 +118,7 @@
!{{ upload.binary_env(config) }}
steps:
!{{ common.setup_ec2_linux() }}
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: !{{ config["build_name"] }}
diff --git a/.github/templates/upload.yml.j2 b/.github/templates/upload.yml.j2
index 4c680ee..63bec41 100644
--- a/.github/templates/upload.yml.j2
+++ b/.github/templates/upload.yml.j2
@@ -52,7 +52,7 @@
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
{%- if use_s3 %}
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
{%- else %}
- uses: actions/download-artifact@v2
{%- endif %}
diff --git a/.github/templates/windows_binary_build_workflow.yml.j2 b/.github/templates/windows_binary_build_workflow.yml.j2
index d899e5d..b389413 100644
--- a/.github/templates/windows_binary_build_workflow.yml.j2
+++ b/.github/templates/windows_binary_build_workflow.yml.j2
@@ -96,7 +96,7 @@
steps:
!{{ common.setup_ec2_windows() }}
!{{ set_runner_specific_vars() }}
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: !{{ config["build_name"] }}
diff --git a/.github/workflows/_android-full-build-test.yml b/.github/workflows/_android-full-build-test.yml
index 3e3f2dd..d0b8845 100644
--- a/.github/workflows/_android-full-build-test.yml
+++ b/.github/workflows/_android-full-build-test.yml
@@ -206,7 +206,7 @@
-u jenkins -i "${ID_X86_32}" bash) 2>&1
- name: Store PyTorch Android Build Artifacts on S3
- uses: seemethere/upload-artifact-s3@v3
+ uses: seemethere/upload-artifact-s3@v4
with:
name: ${{ inputs.build-environment }}
retention-days: 14
diff --git a/.github/workflows/_docs.yml b/.github/workflows/_docs.yml
index 92ea982..96ed63c 100644
--- a/.github/workflows/_docs.yml
+++ b/.github/workflows/_docs.yml
@@ -112,7 +112,7 @@
if: always()
- name: Upload Python Docs Preview
- uses: seemethere/upload-artifact-s3@v3
+ uses: seemethere/upload-artifact-s3@v4
if: ${{ github.event_name == 'pull_request' && matrix.docs_type == 'python' }}
with:
retention-days: 14
@@ -122,7 +122,7 @@
s3-prefix: pytorch/${{ github.event.pull_request.number }}
- name: Upload C++ Docs Preview
- uses: seemethere/upload-artifact-s3@v3
+ uses: seemethere/upload-artifact-s3@v4
if: ${{ github.event_name == 'pull_request' && matrix.docs_type == 'cpp' }}
with:
retention-days: 14
diff --git a/.github/workflows/_linux-build.yml b/.github/workflows/_linux-build.yml
index a228c19..cf6419f 100644
--- a/.github/workflows/_linux-build.yml
+++ b/.github/workflows/_linux-build.yml
@@ -145,7 +145,7 @@
zip -1 -r artifacts.zip dist/ build/custom_test_artifacts build/lib build/bin .pytorch-test-times.json
- name: Store PyTorch Build Artifacts on S3
- uses: seemethere/upload-artifact-s3@v3
+ uses: seemethere/upload-artifact-s3@v4
if: inputs.build-generates-artifacts
with:
name: ${{ inputs.build-environment }}
diff --git a/.github/workflows/_linux-test.yml b/.github/workflows/_linux-test.yml
index 12f896c..359a263 100644
--- a/.github/workflows/_linux-test.yml
+++ b/.github/workflows/_linux-test.yml
@@ -151,7 +151,7 @@
file-suffix: ${{ github.job }}-${{ matrix.config }}-${{ matrix.shard }}-${{ matrix.num_shards }}-${{ matrix.runner }}
- name: Store Core dumps on S3
- uses: seemethere/upload-artifact-s3@v3
+ uses: seemethere/upload-artifact-s3@v4
if: failure()
with:
name: coredumps-${{ matrix.config }}-${{ matrix.shard }}-${{ matrix.num_shards }}-${{ matrix.runner }}
diff --git a/.github/workflows/_win-build.yml b/.github/workflows/_win-build.yml
index 6f72f35..abd7aca 100644
--- a/.github/workflows/_win-build.yml
+++ b/.github/workflows/_win-build.yml
@@ -79,7 +79,7 @@
# Upload to github so that people can click and download artifacts
- name: Upload artifacts to s3
- uses: seemethere/upload-artifact-s3@v3
+ uses: seemethere/upload-artifact-s3@v4
with:
retention-days: 14
if-no-files-found: error
diff --git a/.github/workflows/_win-test.yml b/.github/workflows/_win-test.yml
index 0301f58..750d937 100644
--- a/.github/workflows/_win-test.yml
+++ b/.github/workflows/_win-test.yml
@@ -48,7 +48,7 @@
github-secret: ${{ secrets.GITHUB_TOKEN }}
- name: Download PyTorch Build Artifacts
- uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ uses: seemethere/download-artifact-s3@v3
with:
name: ${{ env.BUILD_ENVIRONMENT }}
path: C:\${{ github.run_id }}\build-results
diff --git a/.github/workflows/generated-linux-binary-conda-nightly.yml b/.github/workflows/generated-linux-binary-conda-nightly.yml
index b3d4027..6d4e827 100644
--- a/.github/workflows/generated-linux-binary-conda-nightly.yml
+++ b/.github/workflows/generated-linux-binary-conda-nightly.yml
@@ -169,7 +169,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_7-cpu
retention-days: 14
@@ -260,7 +260,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cpu
@@ -412,7 +412,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cpu
@@ -598,7 +598,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_7-cuda10_2
retention-days: 14
@@ -690,7 +690,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cuda10_2
@@ -854,7 +854,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cuda10_2
@@ -1043,7 +1043,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_7-cuda11_3
retention-days: 14
@@ -1135,7 +1135,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cuda11_3
@@ -1299,7 +1299,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cuda11_3
@@ -1488,7 +1488,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_7-cuda11_5
retention-days: 14
@@ -1580,7 +1580,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cuda11_5
@@ -1744,7 +1744,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cuda11_5
@@ -1929,7 +1929,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_8-cpu
retention-days: 14
@@ -2020,7 +2020,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cpu
@@ -2172,7 +2172,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cpu
@@ -2358,7 +2358,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_8-cuda10_2
retention-days: 14
@@ -2450,7 +2450,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cuda10_2
@@ -2614,7 +2614,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cuda10_2
@@ -2803,7 +2803,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_8-cuda11_3
retention-days: 14
@@ -2895,7 +2895,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cuda11_3
@@ -3059,7 +3059,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cuda11_3
@@ -3248,7 +3248,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_8-cuda11_5
retention-days: 14
@@ -3340,7 +3340,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cuda11_5
@@ -3504,7 +3504,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cuda11_5
@@ -3689,7 +3689,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_9-cpu
retention-days: 14
@@ -3780,7 +3780,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cpu
@@ -3932,7 +3932,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cpu
@@ -4118,7 +4118,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_9-cuda10_2
retention-days: 14
@@ -4210,7 +4210,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cuda10_2
@@ -4374,7 +4374,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cuda10_2
@@ -4563,7 +4563,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_9-cuda11_3
retention-days: 14
@@ -4655,7 +4655,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cuda11_3
@@ -4819,7 +4819,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cuda11_3
@@ -5008,7 +5008,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_9-cuda11_5
retention-days: 14
@@ -5100,7 +5100,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cuda11_5
@@ -5264,7 +5264,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cuda11_5
@@ -5449,7 +5449,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_10-cpu
retention-days: 14
@@ -5540,7 +5540,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cpu
@@ -5692,7 +5692,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cpu
@@ -5878,7 +5878,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_10-cuda10_2
retention-days: 14
@@ -5970,7 +5970,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cuda10_2
@@ -6134,7 +6134,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cuda10_2
@@ -6323,7 +6323,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_10-cuda11_3
retention-days: 14
@@ -6415,7 +6415,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cuda11_3
@@ -6579,7 +6579,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cuda11_3
@@ -6768,7 +6768,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: conda-py3_10-cuda11_5
retention-days: 14
@@ -6860,7 +6860,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cuda11_5
@@ -7024,7 +7024,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cuda11_5
diff --git a/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-master.yml b/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-master.yml
index ec945c7..574a4ca 100644
--- a/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-master.yml
+++ b/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-master.yml
@@ -165,7 +165,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cpu-shared-with-deps-cxx11-abi
retention-days: 14
@@ -257,7 +257,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-cxx11-abi
diff --git a/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml b/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml
index 8dc954e..0581809 100644
--- a/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml
+++ b/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml
@@ -170,7 +170,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cpu-shared-with-deps-cxx11-abi
retention-days: 14
@@ -262,7 +262,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-cxx11-abi
@@ -415,7 +415,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-cxx11-abi
@@ -601,7 +601,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cpu-shared-without-deps-cxx11-abi
retention-days: 14
@@ -693,7 +693,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-without-deps-cxx11-abi
@@ -846,7 +846,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-without-deps-cxx11-abi
@@ -1032,7 +1032,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cpu-static-with-deps-cxx11-abi
retention-days: 14
@@ -1124,7 +1124,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-with-deps-cxx11-abi
@@ -1277,7 +1277,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-with-deps-cxx11-abi
@@ -1463,7 +1463,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cpu-static-without-deps-cxx11-abi
retention-days: 14
@@ -1555,7 +1555,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-without-deps-cxx11-abi
@@ -1708,7 +1708,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-without-deps-cxx11-abi
@@ -1895,7 +1895,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda10_2-shared-with-deps-cxx11-abi
retention-days: 14
@@ -1988,7 +1988,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-shared-with-deps-cxx11-abi
@@ -2153,7 +2153,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-shared-with-deps-cxx11-abi
@@ -2340,7 +2340,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda10_2-shared-without-deps-cxx11-abi
retention-days: 14
@@ -2433,7 +2433,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-shared-without-deps-cxx11-abi
@@ -2598,7 +2598,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-shared-without-deps-cxx11-abi
@@ -2785,7 +2785,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda10_2-static-with-deps-cxx11-abi
retention-days: 14
@@ -2878,7 +2878,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-static-with-deps-cxx11-abi
@@ -3043,7 +3043,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-static-with-deps-cxx11-abi
@@ -3230,7 +3230,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda10_2-static-without-deps-cxx11-abi
retention-days: 14
@@ -3323,7 +3323,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-static-without-deps-cxx11-abi
@@ -3488,7 +3488,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-static-without-deps-cxx11-abi
@@ -3678,7 +3678,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_3-shared-with-deps-cxx11-abi
retention-days: 14
@@ -3771,7 +3771,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-with-deps-cxx11-abi
@@ -3936,7 +3936,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-with-deps-cxx11-abi
@@ -4126,7 +4126,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_3-shared-without-deps-cxx11-abi
retention-days: 14
@@ -4219,7 +4219,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-without-deps-cxx11-abi
@@ -4384,7 +4384,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-without-deps-cxx11-abi
@@ -4574,7 +4574,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_3-static-with-deps-cxx11-abi
retention-days: 14
@@ -4667,7 +4667,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-with-deps-cxx11-abi
@@ -4832,7 +4832,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-with-deps-cxx11-abi
@@ -5022,7 +5022,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_3-static-without-deps-cxx11-abi
retention-days: 14
@@ -5115,7 +5115,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-without-deps-cxx11-abi
@@ -5280,7 +5280,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-without-deps-cxx11-abi
@@ -5470,7 +5470,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_5-shared-with-deps-cxx11-abi
retention-days: 14
@@ -5563,7 +5563,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-with-deps-cxx11-abi
@@ -5728,7 +5728,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-with-deps-cxx11-abi
@@ -5918,7 +5918,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_5-shared-without-deps-cxx11-abi
retention-days: 14
@@ -6011,7 +6011,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-without-deps-cxx11-abi
@@ -6176,7 +6176,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-without-deps-cxx11-abi
@@ -6366,7 +6366,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_5-static-with-deps-cxx11-abi
retention-days: 14
@@ -6459,7 +6459,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-with-deps-cxx11-abi
@@ -6624,7 +6624,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-with-deps-cxx11-abi
@@ -6814,7 +6814,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_5-static-without-deps-cxx11-abi
retention-days: 14
@@ -6907,7 +6907,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-without-deps-cxx11-abi
@@ -7072,7 +7072,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-without-deps-cxx11-abi
@@ -7259,7 +7259,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm4_5_2-shared-with-deps-cxx11-abi
retention-days: 14
@@ -7352,7 +7352,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-shared-with-deps-cxx11-abi
@@ -7506,7 +7506,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-shared-with-deps-cxx11-abi
@@ -7693,7 +7693,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm4_5_2-shared-without-deps-cxx11-abi
retention-days: 14
@@ -7786,7 +7786,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-shared-without-deps-cxx11-abi
@@ -7940,7 +7940,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-shared-without-deps-cxx11-abi
@@ -8127,7 +8127,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm4_5_2-static-with-deps-cxx11-abi
retention-days: 14
@@ -8220,7 +8220,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-static-with-deps-cxx11-abi
@@ -8374,7 +8374,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-static-with-deps-cxx11-abi
@@ -8561,7 +8561,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm4_5_2-static-without-deps-cxx11-abi
retention-days: 14
@@ -8654,7 +8654,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-static-without-deps-cxx11-abi
@@ -8808,7 +8808,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-static-without-deps-cxx11-abi
@@ -8995,7 +8995,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm5_0-shared-with-deps-cxx11-abi
retention-days: 14
@@ -9088,7 +9088,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-shared-with-deps-cxx11-abi
@@ -9242,7 +9242,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-shared-with-deps-cxx11-abi
@@ -9429,7 +9429,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm5_0-shared-without-deps-cxx11-abi
retention-days: 14
@@ -9522,7 +9522,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-shared-without-deps-cxx11-abi
@@ -9676,7 +9676,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-shared-without-deps-cxx11-abi
@@ -9863,7 +9863,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm5_0-static-with-deps-cxx11-abi
retention-days: 14
@@ -9956,7 +9956,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-static-with-deps-cxx11-abi
@@ -10110,7 +10110,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-static-with-deps-cxx11-abi
@@ -10297,7 +10297,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm5_0-static-without-deps-cxx11-abi
retention-days: 14
@@ -10390,7 +10390,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-static-without-deps-cxx11-abi
@@ -10544,7 +10544,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-static-without-deps-cxx11-abi
diff --git a/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-master.yml b/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-master.yml
index d8f6c78..52961c7 100644
--- a/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-master.yml
+++ b/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-master.yml
@@ -165,7 +165,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cpu-shared-with-deps-cxx11-abi
retention-days: 14
@@ -257,7 +257,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-cxx11-abi
diff --git a/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml b/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml
index 7838248..959da1d 100644
--- a/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml
+++ b/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml
@@ -170,7 +170,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cpu-shared-with-deps-pre-cxx11
retention-days: 14
@@ -262,7 +262,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-pre-cxx11
@@ -415,7 +415,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-pre-cxx11
@@ -601,7 +601,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cpu-shared-without-deps-pre-cxx11
retention-days: 14
@@ -693,7 +693,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-without-deps-pre-cxx11
@@ -846,7 +846,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-without-deps-pre-cxx11
@@ -1032,7 +1032,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cpu-static-with-deps-pre-cxx11
retention-days: 14
@@ -1124,7 +1124,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-with-deps-pre-cxx11
@@ -1277,7 +1277,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-with-deps-pre-cxx11
@@ -1463,7 +1463,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cpu-static-without-deps-pre-cxx11
retention-days: 14
@@ -1555,7 +1555,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-without-deps-pre-cxx11
@@ -1708,7 +1708,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-without-deps-pre-cxx11
@@ -1895,7 +1895,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda10_2-shared-with-deps-pre-cxx11
retention-days: 14
@@ -1988,7 +1988,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-shared-with-deps-pre-cxx11
@@ -2153,7 +2153,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-shared-with-deps-pre-cxx11
@@ -2340,7 +2340,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda10_2-shared-without-deps-pre-cxx11
retention-days: 14
@@ -2433,7 +2433,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-shared-without-deps-pre-cxx11
@@ -2598,7 +2598,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-shared-without-deps-pre-cxx11
@@ -2785,7 +2785,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda10_2-static-with-deps-pre-cxx11
retention-days: 14
@@ -2878,7 +2878,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-static-with-deps-pre-cxx11
@@ -3043,7 +3043,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-static-with-deps-pre-cxx11
@@ -3230,7 +3230,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda10_2-static-without-deps-pre-cxx11
retention-days: 14
@@ -3323,7 +3323,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-static-without-deps-pre-cxx11
@@ -3488,7 +3488,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda10_2-static-without-deps-pre-cxx11
@@ -3678,7 +3678,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_3-shared-with-deps-pre-cxx11
retention-days: 14
@@ -3771,7 +3771,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-with-deps-pre-cxx11
@@ -3936,7 +3936,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-with-deps-pre-cxx11
@@ -4126,7 +4126,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_3-shared-without-deps-pre-cxx11
retention-days: 14
@@ -4219,7 +4219,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-without-deps-pre-cxx11
@@ -4384,7 +4384,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-without-deps-pre-cxx11
@@ -4574,7 +4574,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_3-static-with-deps-pre-cxx11
retention-days: 14
@@ -4667,7 +4667,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-with-deps-pre-cxx11
@@ -4832,7 +4832,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-with-deps-pre-cxx11
@@ -5022,7 +5022,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_3-static-without-deps-pre-cxx11
retention-days: 14
@@ -5115,7 +5115,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-without-deps-pre-cxx11
@@ -5280,7 +5280,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-without-deps-pre-cxx11
@@ -5470,7 +5470,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_5-shared-with-deps-pre-cxx11
retention-days: 14
@@ -5563,7 +5563,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-with-deps-pre-cxx11
@@ -5728,7 +5728,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-with-deps-pre-cxx11
@@ -5918,7 +5918,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_5-shared-without-deps-pre-cxx11
retention-days: 14
@@ -6011,7 +6011,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-without-deps-pre-cxx11
@@ -6176,7 +6176,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-without-deps-pre-cxx11
@@ -6366,7 +6366,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_5-static-with-deps-pre-cxx11
retention-days: 14
@@ -6459,7 +6459,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-with-deps-pre-cxx11
@@ -6624,7 +6624,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-with-deps-pre-cxx11
@@ -6814,7 +6814,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-cuda11_5-static-without-deps-pre-cxx11
retention-days: 14
@@ -6907,7 +6907,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-without-deps-pre-cxx11
@@ -7072,7 +7072,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-without-deps-pre-cxx11
@@ -7259,7 +7259,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm4_5_2-shared-with-deps-pre-cxx11
retention-days: 14
@@ -7352,7 +7352,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-shared-with-deps-pre-cxx11
@@ -7506,7 +7506,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-shared-with-deps-pre-cxx11
@@ -7693,7 +7693,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm4_5_2-shared-without-deps-pre-cxx11
retention-days: 14
@@ -7786,7 +7786,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-shared-without-deps-pre-cxx11
@@ -7940,7 +7940,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-shared-without-deps-pre-cxx11
@@ -8127,7 +8127,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm4_5_2-static-with-deps-pre-cxx11
retention-days: 14
@@ -8220,7 +8220,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-static-with-deps-pre-cxx11
@@ -8374,7 +8374,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-static-with-deps-pre-cxx11
@@ -8561,7 +8561,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm4_5_2-static-without-deps-pre-cxx11
retention-days: 14
@@ -8654,7 +8654,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-static-without-deps-pre-cxx11
@@ -8808,7 +8808,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm4_5_2-static-without-deps-pre-cxx11
@@ -8995,7 +8995,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm5_0-shared-with-deps-pre-cxx11
retention-days: 14
@@ -9088,7 +9088,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-shared-with-deps-pre-cxx11
@@ -9242,7 +9242,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-shared-with-deps-pre-cxx11
@@ -9429,7 +9429,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm5_0-shared-without-deps-pre-cxx11
retention-days: 14
@@ -9522,7 +9522,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-shared-without-deps-pre-cxx11
@@ -9676,7 +9676,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-shared-without-deps-pre-cxx11
@@ -9863,7 +9863,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm5_0-static-with-deps-pre-cxx11
retention-days: 14
@@ -9956,7 +9956,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-static-with-deps-pre-cxx11
@@ -10110,7 +10110,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-static-with-deps-pre-cxx11
@@ -10297,7 +10297,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: libtorch-rocm5_0-static-without-deps-pre-cxx11
retention-days: 14
@@ -10390,7 +10390,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-static-without-deps-pre-cxx11
@@ -10544,7 +10544,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-rocm5_0-static-without-deps-pre-cxx11
diff --git a/.github/workflows/generated-linux-binary-manywheel-master.yml b/.github/workflows/generated-linux-binary-manywheel-master.yml
index 12c6a5f..36a3d8f 100644
--- a/.github/workflows/generated-linux-binary-manywheel-master.yml
+++ b/.github/workflows/generated-linux-binary-manywheel-master.yml
@@ -165,7 +165,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_7-cuda10_2
retention-days: 14
@@ -257,7 +257,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-cuda10_2
diff --git a/.github/workflows/generated-linux-binary-manywheel-nightly.yml b/.github/workflows/generated-linux-binary-manywheel-nightly.yml
index fda595d..2ae300c 100644
--- a/.github/workflows/generated-linux-binary-manywheel-nightly.yml
+++ b/.github/workflows/generated-linux-binary-manywheel-nightly.yml
@@ -169,7 +169,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_7-cpu
retention-days: 14
@@ -260,7 +260,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-cpu
@@ -412,7 +412,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-cpu
@@ -598,7 +598,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_7-cuda10_2
retention-days: 14
@@ -690,7 +690,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-cuda10_2
@@ -854,7 +854,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-cuda10_2
@@ -1043,7 +1043,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_7-cuda11_3
retention-days: 14
@@ -1135,7 +1135,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-cuda11_3
@@ -1299,7 +1299,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-cuda11_3
@@ -1488,7 +1488,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_7-cuda11_5
retention-days: 14
@@ -1580,7 +1580,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-cuda11_5
@@ -1744,7 +1744,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-cuda11_5
@@ -1930,7 +1930,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_7-rocm4_5_2
retention-days: 14
@@ -2022,7 +2022,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-rocm4_5_2
@@ -2175,7 +2175,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-rocm4_5_2
@@ -2361,7 +2361,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_7-rocm5_0
retention-days: 14
@@ -2453,7 +2453,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-rocm5_0
@@ -2606,7 +2606,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_7-rocm5_0
@@ -2791,7 +2791,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_8-cpu
retention-days: 14
@@ -2882,7 +2882,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-cpu
@@ -3034,7 +3034,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-cpu
@@ -3220,7 +3220,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_8-cuda10_2
retention-days: 14
@@ -3312,7 +3312,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-cuda10_2
@@ -3476,7 +3476,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-cuda10_2
@@ -3665,7 +3665,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_8-cuda11_3
retention-days: 14
@@ -3757,7 +3757,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-cuda11_3
@@ -3921,7 +3921,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-cuda11_3
@@ -4110,7 +4110,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_8-cuda11_5
retention-days: 14
@@ -4202,7 +4202,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-cuda11_5
@@ -4366,7 +4366,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-cuda11_5
@@ -4552,7 +4552,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_8-rocm4_5_2
retention-days: 14
@@ -4644,7 +4644,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-rocm4_5_2
@@ -4797,7 +4797,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-rocm4_5_2
@@ -4983,7 +4983,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_8-rocm5_0
retention-days: 14
@@ -5075,7 +5075,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-rocm5_0
@@ -5228,7 +5228,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_8-rocm5_0
@@ -5413,7 +5413,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_9-cpu
retention-days: 14
@@ -5504,7 +5504,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-cpu
@@ -5656,7 +5656,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-cpu
@@ -5842,7 +5842,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_9-cuda10_2
retention-days: 14
@@ -5934,7 +5934,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-cuda10_2
@@ -6098,7 +6098,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-cuda10_2
@@ -6287,7 +6287,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_9-cuda11_3
retention-days: 14
@@ -6379,7 +6379,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-cuda11_3
@@ -6543,7 +6543,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-cuda11_3
@@ -6732,7 +6732,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_9-cuda11_5
retention-days: 14
@@ -6824,7 +6824,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-cuda11_5
@@ -6988,7 +6988,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-cuda11_5
@@ -7174,7 +7174,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_9-rocm4_5_2
retention-days: 14
@@ -7266,7 +7266,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-rocm4_5_2
@@ -7419,7 +7419,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-rocm4_5_2
@@ -7605,7 +7605,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_9-rocm5_0
retention-days: 14
@@ -7697,7 +7697,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-rocm5_0
@@ -7850,7 +7850,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_9-rocm5_0
@@ -8035,7 +8035,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_10-cpu
retention-days: 14
@@ -8126,7 +8126,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-cpu
@@ -8278,7 +8278,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-cpu
@@ -8464,7 +8464,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_10-cuda10_2
retention-days: 14
@@ -8556,7 +8556,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-cuda10_2
@@ -8720,7 +8720,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-cuda10_2
@@ -8909,7 +8909,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_10-cuda11_3
retention-days: 14
@@ -9001,7 +9001,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-cuda11_3
@@ -9165,7 +9165,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-cuda11_3
@@ -9354,7 +9354,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_10-cuda11_5
retention-days: 14
@@ -9446,7 +9446,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-cuda11_5
@@ -9610,7 +9610,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-cuda11_5
@@ -9796,7 +9796,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_10-rocm4_5_2
retention-days: 14
@@ -9888,7 +9888,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-rocm4_5_2
@@ -10041,7 +10041,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-rocm4_5_2
@@ -10227,7 +10227,7 @@
run: |
# Ensure the working directory gets chowned back to the current user
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
with:
name: manywheel-py3_10-rocm5_0
retention-days: 14
@@ -10319,7 +10319,7 @@
- name: Preserve github env variables for use in docker
run: |
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-rocm5_0
@@ -10472,7 +10472,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: manywheel-py3_10-rocm5_0
diff --git a/.github/workflows/generated-windows-binary-conda-nightly.yml b/.github/workflows/generated-windows-binary-conda-nightly.yml
index 63bbe8f..a32c9b8 100644
--- a/.github/workflows/generated-windows-binary-conda-nightly.yml
+++ b/.github/workflows/generated-windows-binary-conda-nightly.yml
@@ -114,7 +114,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_7-cpu
@@ -182,7 +182,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cpu
@@ -299,7 +299,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cpu
@@ -434,7 +434,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_7-cuda11_3
@@ -503,7 +503,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cuda11_3
@@ -621,7 +621,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cuda11_3
@@ -756,7 +756,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_7-cuda11_5
@@ -825,7 +825,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cuda11_5
@@ -943,7 +943,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_7-cuda11_5
@@ -1077,7 +1077,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_8-cpu
@@ -1145,7 +1145,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cpu
@@ -1262,7 +1262,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cpu
@@ -1397,7 +1397,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_8-cuda11_3
@@ -1466,7 +1466,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cuda11_3
@@ -1584,7 +1584,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cuda11_3
@@ -1719,7 +1719,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_8-cuda11_5
@@ -1788,7 +1788,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cuda11_5
@@ -1906,7 +1906,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_8-cuda11_5
@@ -2040,7 +2040,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_9-cpu
@@ -2108,7 +2108,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cpu
@@ -2225,7 +2225,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cpu
@@ -2360,7 +2360,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_9-cuda11_3
@@ -2429,7 +2429,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cuda11_3
@@ -2547,7 +2547,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cuda11_3
@@ -2682,7 +2682,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_9-cuda11_5
@@ -2751,7 +2751,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cuda11_5
@@ -2869,7 +2869,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_9-cuda11_5
@@ -3003,7 +3003,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_10-cpu
@@ -3071,7 +3071,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cpu
@@ -3188,7 +3188,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cpu
@@ -3323,7 +3323,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_10-cuda11_3
@@ -3392,7 +3392,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cuda11_3
@@ -3510,7 +3510,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cuda11_3
@@ -3645,7 +3645,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: conda-py3_10-cuda11_5
@@ -3714,7 +3714,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cuda11_5
@@ -3832,7 +3832,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: conda-py3_10-cuda11_5
diff --git a/.github/workflows/generated-windows-binary-libtorch-debug-master.yml b/.github/workflows/generated-windows-binary-libtorch-debug-master.yml
index 6dd012f..bf1dfa6 100644
--- a/.github/workflows/generated-windows-binary-libtorch-debug-master.yml
+++ b/.github/workflows/generated-windows-binary-libtorch-debug-master.yml
@@ -113,7 +113,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cpu-shared-with-deps-debug
@@ -185,7 +185,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-debug
diff --git a/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml b/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml
index 10e4461..e4cc5e7 100644
--- a/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml
+++ b/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml
@@ -118,7 +118,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cpu-shared-with-deps-debug
@@ -190,7 +190,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-debug
@@ -311,7 +311,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-debug
@@ -449,7 +449,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cpu-shared-without-deps-debug
@@ -521,7 +521,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-without-deps-debug
@@ -642,7 +642,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-without-deps-debug
@@ -780,7 +780,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cpu-static-with-deps-debug
@@ -852,7 +852,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-with-deps-debug
@@ -973,7 +973,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-with-deps-debug
@@ -1111,7 +1111,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cpu-static-without-deps-debug
@@ -1183,7 +1183,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-without-deps-debug
@@ -1304,7 +1304,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-without-deps-debug
@@ -1443,7 +1443,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_3-shared-with-deps-debug
@@ -1516,7 +1516,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-with-deps-debug
@@ -1638,7 +1638,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-with-deps-debug
@@ -1777,7 +1777,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_3-shared-without-deps-debug
@@ -1850,7 +1850,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-without-deps-debug
@@ -1972,7 +1972,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-without-deps-debug
@@ -2111,7 +2111,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_3-static-with-deps-debug
@@ -2184,7 +2184,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-with-deps-debug
@@ -2306,7 +2306,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-with-deps-debug
@@ -2445,7 +2445,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_3-static-without-deps-debug
@@ -2518,7 +2518,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-without-deps-debug
@@ -2640,7 +2640,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-without-deps-debug
@@ -2779,7 +2779,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_5-shared-with-deps-debug
@@ -2852,7 +2852,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-with-deps-debug
@@ -2974,7 +2974,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-with-deps-debug
@@ -3113,7 +3113,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_5-shared-without-deps-debug
@@ -3186,7 +3186,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-without-deps-debug
@@ -3308,7 +3308,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-without-deps-debug
@@ -3447,7 +3447,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_5-static-with-deps-debug
@@ -3520,7 +3520,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-with-deps-debug
@@ -3642,7 +3642,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-with-deps-debug
@@ -3781,7 +3781,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_5-static-without-deps-debug
@@ -3854,7 +3854,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-without-deps-debug
@@ -3976,7 +3976,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-without-deps-debug
diff --git a/.github/workflows/generated-windows-binary-libtorch-release-master.yml b/.github/workflows/generated-windows-binary-libtorch-release-master.yml
index 5bc25ad..42f9f24 100644
--- a/.github/workflows/generated-windows-binary-libtorch-release-master.yml
+++ b/.github/workflows/generated-windows-binary-libtorch-release-master.yml
@@ -113,7 +113,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cpu-shared-with-deps-release
@@ -185,7 +185,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-release
diff --git a/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml b/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml
index 1cdc4c9..079e746 100644
--- a/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml
+++ b/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml
@@ -118,7 +118,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cpu-shared-with-deps-release
@@ -190,7 +190,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-release
@@ -311,7 +311,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-with-deps-release
@@ -449,7 +449,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cpu-shared-without-deps-release
@@ -521,7 +521,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-without-deps-release
@@ -642,7 +642,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-shared-without-deps-release
@@ -780,7 +780,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cpu-static-with-deps-release
@@ -852,7 +852,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-with-deps-release
@@ -973,7 +973,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-with-deps-release
@@ -1111,7 +1111,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cpu-static-without-deps-release
@@ -1183,7 +1183,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-without-deps-release
@@ -1304,7 +1304,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cpu-static-without-deps-release
@@ -1443,7 +1443,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_3-shared-with-deps-release
@@ -1516,7 +1516,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-with-deps-release
@@ -1638,7 +1638,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-with-deps-release
@@ -1777,7 +1777,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_3-shared-without-deps-release
@@ -1850,7 +1850,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-without-deps-release
@@ -1972,7 +1972,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-shared-without-deps-release
@@ -2111,7 +2111,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_3-static-with-deps-release
@@ -2184,7 +2184,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-with-deps-release
@@ -2306,7 +2306,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-with-deps-release
@@ -2445,7 +2445,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_3-static-without-deps-release
@@ -2518,7 +2518,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-without-deps-release
@@ -2640,7 +2640,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_3-static-without-deps-release
@@ -2779,7 +2779,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_5-shared-with-deps-release
@@ -2852,7 +2852,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-with-deps-release
@@ -2974,7 +2974,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-with-deps-release
@@ -3113,7 +3113,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_5-shared-without-deps-release
@@ -3186,7 +3186,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-without-deps-release
@@ -3308,7 +3308,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-shared-without-deps-release
@@ -3447,7 +3447,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_5-static-with-deps-release
@@ -3520,7 +3520,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-with-deps-release
@@ -3642,7 +3642,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-with-deps-release
@@ -3781,7 +3781,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: libtorch-cuda11_5-static-without-deps-release
@@ -3854,7 +3854,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-without-deps-release
@@ -3976,7 +3976,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: libtorch-cuda11_5-static-without-deps-release
diff --git a/.github/workflows/generated-windows-binary-wheel-master.yml b/.github/workflows/generated-windows-binary-wheel-master.yml
index 99603e0..6554e66 100644
--- a/.github/workflows/generated-windows-binary-wheel-master.yml
+++ b/.github/workflows/generated-windows-binary-wheel-master.yml
@@ -110,7 +110,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_7-cuda11_3
@@ -179,7 +179,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_7-cuda11_3
diff --git a/.github/workflows/generated-windows-binary-wheel-nightly.yml b/.github/workflows/generated-windows-binary-wheel-nightly.yml
index 6ef8be9..da193cf0 100644
--- a/.github/workflows/generated-windows-binary-wheel-nightly.yml
+++ b/.github/workflows/generated-windows-binary-wheel-nightly.yml
@@ -114,7 +114,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_7-cpu
@@ -182,7 +182,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_7-cpu
@@ -299,7 +299,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_7-cpu
@@ -434,7 +434,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_7-cuda11_3
@@ -503,7 +503,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_7-cuda11_3
@@ -621,7 +621,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_7-cuda11_3
@@ -756,7 +756,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_7-cuda11_5
@@ -825,7 +825,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_7-cuda11_5
@@ -943,7 +943,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_7-cuda11_5
@@ -1077,7 +1077,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_8-cpu
@@ -1145,7 +1145,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_8-cpu
@@ -1262,7 +1262,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_8-cpu
@@ -1397,7 +1397,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_8-cuda11_3
@@ -1466,7 +1466,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_8-cuda11_3
@@ -1584,7 +1584,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_8-cuda11_3
@@ -1719,7 +1719,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_8-cuda11_5
@@ -1788,7 +1788,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_8-cuda11_5
@@ -1906,7 +1906,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_8-cuda11_5
@@ -2040,7 +2040,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_9-cpu
@@ -2108,7 +2108,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_9-cpu
@@ -2225,7 +2225,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_9-cpu
@@ -2360,7 +2360,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_9-cuda11_3
@@ -2429,7 +2429,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_9-cuda11_3
@@ -2547,7 +2547,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_9-cuda11_3
@@ -2682,7 +2682,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_9-cuda11_5
@@ -2751,7 +2751,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_9-cuda11_5
@@ -2869,7 +2869,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_9-cuda11_5
@@ -3003,7 +3003,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_10-cpu
@@ -3071,7 +3071,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_10-cpu
@@ -3188,7 +3188,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_10-cpu
@@ -3323,7 +3323,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_10-cuda11_3
@@ -3392,7 +3392,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_10-cuda11_3
@@ -3510,7 +3510,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_10-cuda11_3
@@ -3645,7 +3645,7 @@
shell: bash
run: |
"${PYTORCH_ROOT}/.circleci/scripts/binary_windows_build.sh"
- - uses: seemethere/upload-artifact-s3@v3
+ - uses: seemethere/upload-artifact-s3@v4
if: always()
with:
name: wheel-py3_10-cuda11_5
@@ -3714,7 +3714,7 @@
echo "BINARY_ENV_FILE=${RUNNER_TEMP}/env" >> "${GITHUB_ENV}"
echo "PYTORCH_FINAL_PACKAGE_DIR=${RUNNER_TEMP}/artifacts" >> "${GITHUB_ENV}"
echo "WIN_PACKAGE_WORK_DIR=${RUNNER_TEMP}"
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_10-cuda11_5
@@ -3832,7 +3832,7 @@
env | grep '^GITHUB' > "/tmp/github_env_${GITHUB_RUN_ID}"
- name: Clone pytorch/pytorch
uses: actions/checkout@v2
- - uses: seemethere/download-artifact-s3@0504774707cbc8603d7dca922e8026eb8bf3b47b
+ - uses: seemethere/download-artifact-s3@v3
name: Download Build Artifacts
with:
name: wheel-py3_10-cuda11_5