Actions: Update to multi-benchmark workflow

This commit is contained in:
Jack Grigg 2020-11-02 00:11:11 +00:00
parent 74e294c117
commit db3ee38f7e
2 changed files with 3 additions and 6 deletions

View file

@ -20,12 +20,8 @@ jobs:
- name: Run benchmarks - name: Run benchmarks
run: | run: |
# run benchmarks and save baseline to "criterion.dev.temp" # run benchmarks and save baseline to "criterion.dev.temp"
cargo bench -- --verbose --noplot --save-baseline criterion.dev.temp cargo bench -- --verbose --noplot
# set the path to the file to upload to criterion.dev
echo "::set-env name=CRITERION_FILE_PATH::$(find $(find . -type d -name criterion.dev.temp) -name raw.csv)"
- name: Upload benchmarks - name: Upload benchmarks
run: | run: |
# upload the file # upload the file
curl -F 'raw.csv=@${{ env.CRITERION_FILE_PATH }}' \ bash <(curl -s https://criterion.dev/bash)
'https://api.criterion.dev/v1/${{ github.repository }}/measurements?token=${{ secrets.CRITERION_TOKEN }}&commit=${{ github.sha }}'

View file

@ -87,3 +87,4 @@ bench = false
[[bin]] [[bin]]
name = "rage-mount" name = "rage-mount"
required-features = ["mount"] required-features = ["mount"]
bench = false