mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-02-15 10:03:26 -05:00
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action) from 4.3.1 to 4.3.3.
- [Release notes](https://github.com/codspeedhq/action/releases)
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md)
- [Commits](4348f634fa...bb005fe1c1)
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.3.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
name: Benchmarks
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
benchmarks:
|
|
name: Run Benchmarks
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
benchmark:
|
|
- crypto_bench
|
|
- event_cache
|
|
- linked_chunk
|
|
- store_bench
|
|
- timeline
|
|
- room_list
|
|
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
|
|
|
|
- name: Setup rust toolchain, cache and cargo-codspeed binary
|
|
uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670
|
|
with:
|
|
channel: stable
|
|
cache-target: release
|
|
bins: cargo-codspeed
|
|
|
|
- name: Build the benchmark target(s)
|
|
run: cargo codspeed build -p benchmarks --bench ${{ matrix.benchmark }} --features codspeed
|
|
|
|
- name: Run the benchmarks
|
|
uses: CodSpeedHQ/action@bb005fe1c1eea036d3894f02c049cb6b154a1c27
|
|
with:
|
|
run: cargo codspeed run
|
|
mode: "instrumentation"
|
|
token: ${{ secrets.CODSPEED_TOKEN }}
|