Skip to content

Commit

Permalink
github: action: Fix faillure benchmark job
Browse files Browse the repository at this point in the history
  • Loading branch information
RaulTrombin authored and patrickelectric committed Feb 28, 2024
1 parent 27c504c commit b6fd0a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/action.yml
Expand Up @@ -88,7 +88,7 @@ jobs:
echo "Checking out current preivous branch"
git checkout -
- name: Cargo Bench
run: cargo bench --jobs 1 --bench bench -- --output-format bencher | tee output.txt
run: cargo bench --jobs 1 --bench bench -- --output-format bencher | tee output.txt || { echo "Benchmark failed"; exit 1; }
- name: Compare results & store cached results
uses: benchmark-action/github-action-benchmark@v1.18.0
with:
Expand Down

0 comments on commit b6fd0a4

Please sign in to comment.