bump to v0.14.0-rapids.16 #46
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: Benchmarks | |
| # spell-checker:ignore codspeed dtolnay Swatinem | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - '*' | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| id-token: write # to authenticate with CodSpeed | |
| # End the current execution if there is a new changeset in the PR. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| benchmarks: | |
| name: Run ${{ matrix.mode }} benchmarks (CodSpeed) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| mode: | |
| - simulation | |
| - memory | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Install cargo-codspeed | |
| shell: bash | |
| run: cargo install cargo-codspeed --locked | |
| - name: Build benchmarks | |
| shell: bash | |
| run: cargo codspeed build | |
| - name: Run benchmarks | |
| uses: CodSpeedHQ/action@v4 | |
| continue-on-error: true | |
| env: | |
| CODSPEED_LOG: debug | |
| with: | |
| mode: ${{ matrix.mode }} | |
| run: cargo codspeed run > /dev/null | |
| cache-instruments: false |