Fix wrong wget arg #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmark | |
on: | |
push: | |
branches: master | |
jobs: | |
benchmark_with_bencher: | |
name: Benchmark with Bencher | |
runs-on: ubuntu-22.04 | |
env: | |
BENCHER_PROJECT: mpeg2ts-reader | |
BENCHER_API_TOKEN: ${{ secrets.BENCHER_API_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install toolchain | |
uses: dtolnay/[email protected] | |
- uses: bencherdev/bencher@main | |
- run: wget --quiet -c "http://www.badgers-in-foil.co.uk/4d0660bd-5755-4917-9592-2e3d85736592.ts" | |
- run: | | |
cargo bench --bench ci_bench > perf.txt | |
bencher run "cargo bench ci_bench" \ | |
--branch "$GITHUB_REF_NAME" \ | |
--err \ | |
--adapter rust_iai \ | |
--file "perf.txt" |