-
Notifications
You must be signed in to change notification settings - Fork 63
32 lines (29 loc) · 804 Bytes
/
bench.yml
File metadata and controls
32 lines (29 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Benchmark
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
codspeed:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- 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 ruint-bench --bench bench
- name: Run the benchmarks
uses: CodSpeedHQ/action@v4
with:
run: cargo codspeed run -p ruint-bench bench
token: ${{ secrets.CODSPEED_TOKEN }}
mode: instrumentation