From db3ee38f7eb5dc057a655b78ed75c7ff4d9afc7c Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 2 Nov 2020 00:11:11 +0000 Subject: [PATCH] Actions: Update to multi-benchmark workflow --- .github/workflows/criterion.yml | 8 ++------ rage/Cargo.toml | 1 + 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/criterion.yml b/.github/workflows/criterion.yml index 2928db2..31de307 100644 --- a/.github/workflows/criterion.yml +++ b/.github/workflows/criterion.yml @@ -20,12 +20,8 @@ jobs: - name: Run benchmarks run: | # run benchmarks and save baseline to "criterion.dev.temp" - cargo bench -- --verbose --noplot --save-baseline criterion.dev.temp - - # 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)" + cargo bench -- --verbose --noplot - name: Upload benchmarks run: | # upload the file - curl -F 'raw.csv=@${{ env.CRITERION_FILE_PATH }}' \ - 'https://api.criterion.dev/v1/${{ github.repository }}/measurements?token=${{ secrets.CRITERION_TOKEN }}&commit=${{ github.sha }}' + bash <(curl -s https://criterion.dev/bash) diff --git a/rage/Cargo.toml b/rage/Cargo.toml index fba680d..5b683af 100644 --- a/rage/Cargo.toml +++ b/rage/Cargo.toml @@ -87,3 +87,4 @@ bench = false [[bin]] name = "rage-mount" required-features = ["mount"] +bench = false