Skip to content

Commit

Permalink
try v4
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Dec 14, 2023
1 parent c220d44 commit eb9b21d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/conda-cpp-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,72 +112,72 @@ jobs:
ls -alF "./artifacts"
- name: (testing) upload 1MB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4-beta
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-1mb"
path: "artifacts/1mb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload 10MB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4-beta
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-10mb"
path: "artifacts/10mb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload 100MB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4-beta
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-100mb"
path: "artifacts/100mb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload 500MB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4-beta
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-500mb"
path: "artifacts/500mb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload 1GB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4-beta
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-1gb"
path: "artifacts/1gb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload 2GB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4-beta
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-2gb"
path: "artifacts/2gb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload 5GB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4-beta
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-5gb"
path: "artifacts/5gb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload bundle of test artifacts
if: "!cancelled()"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4-beta
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-bundle"
path: "artifacts/"
retention-days: 1
if-no-files-found: error
- name: (testing) Upload real build artifacts
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
uses: actions/upload-artifact@v4-beta
with
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}"
path: "artifacts/"
retention-days: 1
Expand Down

0 comments on commit eb9b21d

Please sign in to comment.