Skip to content

Commit

Permalink
enable codspeed
Browse files Browse the repository at this point in the history
  • Loading branch information
luizirber committed Jun 29, 2024
1 parent 479c2a3 commit 8118f96
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/codspeed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: codspeed-benchmarks

on:
# Run on pushes to the main branch
push:
branches:
- "latest"
# Run on pull requests
pull_request:
# `workflow_dispatch` allows CodSpeed to trigger backtest
# performance analysis in order to generate initial data.
workflow_dispatch:

jobs:
benchmarks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup rust toolchain, cache and cargo-codspeed binary
uses: moonrepo/setup-rust@v0
with:
channel: stable
cache-target: release
bins: cargo-codspeed

- name: Build the benchmark target(s)
run: cargo codspeed build -p sourmash

- name: Run the benchmarks
uses: CodSpeedHQ/action@v2
with:
run: "cd src/core && cargo codspeed run"
token: ${{ secrets.CODSPEED_TOKEN }}
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
cargo-udeps
cargo-deny
cargo-wasi
cargo-codspeed
#cargo-semver-checks
nixpkgs-fmt
];
Expand Down

0 comments on commit 8118f96

Please sign in to comment.