diff --git a/.github/workflows/conda-cpp-build.yaml b/.github/workflows/conda-cpp-build.yaml index b3259f13..54416d46 100644 --- a/.github/workflows/conda-cpp-build.yaml +++ b/.github/workflows/conda-cpp-build.yaml @@ -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()"