feat: add file_clone (reflink/CoW) mode for the local disk cache #637
Workflow file for this run
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) | |
| # 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 | |
| env: | |
| CODSPEED_LOG: debug | |
| with: | |
| mode: ${{ matrix.mode }} | |
| run: cargo codspeed run > /dev/null | |
| token: ${{ secrets.CODSPEED_TOKEN }} |