From 49893dae7f43e7cfde5cab18dcf26c4a8345640d Mon Sep 17 00:00:00 2001 From: billyevans Date: Thu, 22 May 2025 22:26:32 -0700 Subject: [PATCH] Remove benchmark action --- .github/workflows/rust.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b49cf39..9c6eaea 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -127,35 +127,3 @@ jobs: cargo login ${{ secrets.CARGO_TOKEN }} cargo publish - benchmark: - name: Benchmark - runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' - - steps: - - uses: actions/checkout@v4 - - - name: Install Rust - uses: dtolnay/rust-toolchain@stable - - - name: Cache dependencies - uses: actions/cache@v4 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - target - key: ${{ runner.os }}-cargo-bench-${{ hashFiles('**/Cargo.lock') }} - - - name: Run benchmarks - run: cargo bench | tee benchmark_output.txt - - - name: Store benchmark result - uses: benchmark-action/github-action-benchmark@v1 - with: - tool: 'cargo' - output-file-path: benchmark_output.txt - github-token: ${{ secrets.GITHUB_TOKEN }} - auto-push: true - comment-on-alert: true - alert-threshold: '200%'