chore(deps): bump actions/checkout from 5 to 6 #1784
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Benchmark | |
| permissions: {} | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| codspeed: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Checkout submodules | |
| run: git submodule update --checkout | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| - name: Install cargo-codspeed | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: cargo-codspeed | |
| - name: Build the benchmark target(s) | |
| run: cargo codspeed build --profile profiling -p solar-bench --bench criterion | |
| - name: Run the benchmarks | |
| uses: CodSpeedHQ/action@v4 | |
| with: | |
| run: cargo codspeed run -p solar-bench criterion | |
| mode: instrumentation | |
| token: ${{ secrets.CODSPEED_TOKEN }} | |
| iai: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| env: | |
| BASELINE: base | |
| IAI_CALLGRIND_RUNNER: iai-callgrind-runner | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Checkout submodules | |
| run: git submodule update --checkout | |
| - name: Install Valgrind | |
| run: sudo apt update && sudo apt install valgrind | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Install cargo-binstall | |
| uses: taiki-e/install-action@cargo-binstall | |
| - name: Checkout base | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.base_ref || 'main' }} | |
| fetch-depth: 2 | |
| - name: Checkout HEAD^ | |
| if: ${{ !github.base_ref }} | |
| run: git checkout HEAD^ | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| - name: Install iai-callgrind-runner | |
| run: ./.github/scripts/install_iai_callgrind_runner.sh | |
| - name: Save baseline | |
| run: cargo bench -p solar-bench --bench iai --features ci -- --save-baseline=$BASELINE | |
| - name: Checkout PR | |
| uses: actions/checkout@v6 | |
| with: | |
| clean: false | |
| - name: Install iai-callgrind-runner | |
| run: ./.github/scripts/install_iai_callgrind_runner.sh | |
| - name: Compare PR benchmarks | |
| run: cargo bench -p solar-bench --bench iai --features ci -- --baseline=$BASELINE |