Skip to content

Commit

Permalink
actually comitting all the changes would help
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Dec 13, 2023
1 parent ffffe37 commit 09fd789
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/conda-cpp-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,40 +103,46 @@ jobs:
head -c 1000000000 /dev/urandom > "${TEST_DIR}/1gb.bin"
head -c 10000000000 /dev/urandom > "${TEST_DIR}/10gb.bin"
- name: (testing) upload 1MB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
path: "${{ env.TEST_DIR }}/1mb.bin"
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-1mb"
path: "${{ env.TEST_DIR }}/1mb.bin"
retention-days: 1
- name: (testing) upload 10MB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
path: "${{ env.TEST_DIR }}/10mb.bin"
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-10mb"
path: "${{ env.TEST_DIR }}/10mb.bin"
retention-days: 1
- name: (testing) upload 100MB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
path: "${{ env.TEST_DIR }}/100mb.bin"
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-100mb"
path: "${{ env.TEST_DIR }}/100mb.bin"
retention-days: 1
- name: (testing) upload 1GB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
path: "${{ env.TEST_DIR }}/1gb.bin"
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-1gb"
path: "${{ env.TEST_DIR }}/1gb.bin"
retention-days: 1
- name: (testing) upload 10GB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
path: "${{ env.TEST_DIR }}/10gb.bin"
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-10gb"
path: "${{ env.TEST_DIR }}/10gb.bin"
retention-days: 1
- name: (testing) upload bundle of test artifacts
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
path: "${{ env.TEST_DIR }}/*.bin"
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-bundle"
path: "${{ env.TEST_DIR }}/*.bin"
retention-days: 1
- name: (testing) Upload real build artifacts
if: "!cancelled()"
Expand Down

0 comments on commit 09fd789

Please sign in to comment.