Skip to content
Merged
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
21 changes: 19 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -39,7 +38,7 @@ jobs:
- uses: moonrepo/setup-rust@v1
- run: cargo test --all

compat-integration-test:
compat-integration-test-instrumentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -58,3 +57,21 @@ jobs:
with:
run: cargo codspeed run
token: ${{ secrets.CODSPEED_TOKEN }}

compat-integration-test-walltime:
runs-on: codspeed-macro
steps:
- uses: actions/checkout@v4
- uses: moonrepo/setup-rust@v1
with:
cache-target: release

- run: cargo install --path crates/cargo-codspeed --locked

- run: cargo codspeed build -p codspeed-divan-compat

- name: Run the benchmarks
uses: CodSpeedHQ/action@main
with:
run: cargo codspeed run
token: ${{ secrets.CODSPEED_TOKEN }}
Loading