From 50dda0ba7e4a12a044731e1f6b0363403620c551 Mon Sep 17 00:00:00 2001 From: Iban Eguia Date: Fri, 31 Dec 2021 14:10:59 +0100 Subject: [PATCH] Using upstream benchmark action (#1753) * Using upstream benchmark action * Updated benchmarks action --- .github/workflows/master.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 4586bc7361..6510b9550c 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -43,12 +43,12 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Run benchmark - run: cargo bench -p Boa | tee output.txt + run: cargo bench -p Boa -- --output-format bencher | tee output.txt - name: Store benchmark result - uses: jasonwilliams/github-action-benchmark@v1 + uses: benchmark-action/github-action-benchmark@v1.11.2 with: name: Boa Benchmarks - tool: "criterion" + tool: "cargo" output-file-path: output.txt auto-push: true github-token: ${{ secrets.GITHUB_TOKEN }}