Skip to content

Commit

Permalink
try relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Dec 13, 2023
1 parent 68888f1 commit 8511d0c
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/conda-cpp-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,68 +99,68 @@ jobs:
# GH_TOKEN: ${{ github.token }}
- name: (testing) generate artifacts
run: |
mkdir -p "${{ env.RAPIDS_ARTIFACTS_DIR }}"
head -c 1000000 /dev/urandom > "${{ env.RAPIDS_ARTIFACTS_DIR }}/1mb.bin"
head -c 10000000 /dev/urandom > "${{ env.RAPIDS_ARTIFACTS_DIR }}/10mb.bin"
head -c 100000000 /dev/urandom > "${{ env.RAPIDS_ARTIFACTS_DIR }}/100mb.bin"
head -c 1000000000 /dev/urandom > "${{ env.RAPIDS_ARTIFACTS_DIR }}/1gb.bin"
head -c 10000000000 /dev/urandom > "${{ env.RAPIDS_ARTIFACTS_DIR }}/10gb.bin"
mkdir -p ./artifacts
head -c 1000000 /dev/urandom > "./artifacts/1mb.bin"
head -c 10000000 /dev/urandom > "./artifacts10mb.bin"
head -c 100000000 /dev/urandom > "./artifacts/100mb.bin"
head -c 1000000000 /dev/urandom > "./artifacts/1gb.bin"
head -c 10000000000 /dev/urandom > "./artifacts/10gb.bin"
ls -alF .
echo "-----"
ls -alF "${{ env.RAPIDS_ARTIFACTS_DIR }}"
ls -alF "./artifacts"
- name: (testing) upload 1MB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-1mb"
path: "${{ env.RAPIDS_ARTIFACTS_DIR }}/1mb.bin"
path: "artifacts/1mb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload 10MB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-10mb"
path: "${{ env.RAPIDS_ARTIFACTS_DIR }}/10mb.bin"
path: "artifacts/10mb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload 100MB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-100mb"
path: "${{ env.RAPIDS_ARTIFACTS_DIR }}/100mb.bin"
path: "artifacts/100mb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload 1GB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-1gb"
path: "${{ env.RAPIDS_ARTIFACTS_DIR }}/1gb.bin"
path: "artifacts/1gb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload 10GB artifact
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-10gb"
path: "${{ env.RAPIDS_ARTIFACTS_DIR }}/10gb.bin"
path: "artifacts/10gb.bin"
retention-days: 1
if-no-files-found: error
- name: (testing) upload bundle of test artifacts
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}-bundle"
path: "${{ env.RAPIDS_ARTIFACTS_DIR }}/"
path: "artifacts/"
retention-days: 1
if-no-files-found: error
- name: (testing) Upload real build artifacts
if: "!cancelled()"
uses: actions/upload-artifact@v3
with:
name: "${{ env.RAPIDS_ARTIFACT_PREFIX }}"
path: "${{ env.RAPIDS_ARTIFACTS_DIR }}/"
path: "artifacts/"
retention-days: 1
if-no-files-found: error

0 comments on commit 8511d0c

Please sign in to comment.