diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 063c1d03..e5b0352e 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -16,14 +16,14 @@ jobs: - uses: actions/checkout@v4 - run: rustup update - name: Run benchmark - run: touch PMcore/output.txt && cargo bench | tee PMcore/output.txt + run: cargo bench | tee output.txt - name: Store benchmark result uses: benchmark-action/github-action-benchmark@v1 with: name: Rust Benchmark tool: 'cargo' - output-file-path: output.txt + output-file-path: PMcore/output.txt github-token: ${{ secrets.GITHUB_TOKEN }} auto-push: true # Show alert with commit comment on detecting possible performance regression @@ -37,7 +37,7 @@ jobs: with: name: Rust Benchmark tool: 'cargo' - output-file-path: output.txt + output-file-path: PMcore/output.txt github-token: ${{ secrets.GITHUB_TOKEN }} auto-push: true # Show alert with commit comment on detecting possible performance regression