Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
tools: cargo-codspeed

- uses: ./.github/actions/pnpm
- name: Build Benchmark
- name: Build Simulation Benchmark
env:
RUSTFLAGS: "-C debuginfo=1 -C strip=none -g"
run: cargo codspeed build
run: cargo codspeed build -m simulation

- name: Run CPU benchmark
uses: CodSpeedHQ/action@4deb3275dd364fb96fb074c953133d29ec96f80f # https://github.com/CodSpeedHQ/action/releases/tag/v4.10.6
Expand All @@ -54,6 +54,11 @@ jobs:
run: cargo codspeed run
token: ${{ secrets.CODSPEED_TOKEN }}

- name: Build Memory Benchmark
env:
RUSTFLAGS: "-C debuginfo=1 -C strip=none -g"
run: cargo codspeed build -m memory

- name: Run memory benchmark
uses: CodSpeedHQ/action@4deb3275dd364fb96fb074c953133d29ec96f80f # https://github.com/CodSpeedHQ/action/releases/tag/v4.10.6
timeout-minutes: 30
Expand Down
Loading