From 09fd789176f15ca40a32d619e75397947aebe87b Mon Sep 17 00:00:00 2001 From: James Lamb Date: Wed, 13 Dec 2023 11:08:14 -0600 Subject: [PATCH] actually comitting all the changes would help --- .github/workflows/conda-cpp-build.yaml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) 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()"