馃И test(storage): share one capture subscriber #3495
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: CodSpeed | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: codspeed-${{ github.event_name == 'push' && github.sha || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| benchmarks: | |
| name: ${{ matrix.ecosystem }} benchmarks | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - ecosystem: OCI | |
| package: peryx-ecosystem-oci | |
| suite: all | |
| - ecosystem: PyPI parsing | |
| package: peryx-ecosystem-pypi | |
| suite: parsing | |
| - ecosystem: PyPI serving | |
| package: peryx-ecosystem-pypi | |
| suite: serving | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/setup | |
| with: | |
| tools: just cargo:cargo-codspeed | |
| - run: just codspeed-build "$PACKAGE" "$SUITE" | |
| env: | |
| PACKAGE: ${{ matrix.package }} | |
| SUITE: ${{ matrix.suite }} | |
| - uses: CodSpeedHQ/action@373d6868929f444bc08d901fd0eb0ad52a8875ea # v5.2.1 | |
| with: | |
| exclude-allocations: true | |
| mode: simulation | |
| run: just codspeed-run "${{ matrix.package }}" simulation | |
| codspeed-gate: | |
| if: always() | |
| needs: benchmarks | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - if: needs.benchmarks.result != 'success' | |
| run: exit 1 |