Skip to content

Commit

Permalink
ci: fix node-bench-regression-guard for master (#6589)
Browse files Browse the repository at this point in the history
  • Loading branch information
alvicsam authored Nov 25, 2024
1 parent 6da7d36 commit 75e79fa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/tests-misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,14 @@ jobs:

- name: Download artifact (master run)
uses: actions/[email protected]
continue-on-error: true
with:
name: cargo-check-benches-master-${{ github.sha }}
path: ./artifacts/master

- name: Download artifact (current run)
uses: actions/[email protected]
continue-on-error: true
with:
name: cargo-check-benches-current-${{ github.sha }}
path: ./artifacts/current
Expand All @@ -183,6 +185,12 @@ jobs:
exit 0
fi
# fail if no artifacts
if [ ! -d ./artifacts/master ] || [ ! -d ./artifacts/current ]; then
echo "No artifacts found"
exit 1
fi
docker run --rm \
-v $PWD/artifacts/master:/artifacts/master \
-v $PWD/artifacts/current:/artifacts/current \
Expand Down

0 comments on commit 75e79fa

Please sign in to comment.