qe: Fix Windows build after merging c-abi (#4826) #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "QE: Codespeed benchmarks" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- ".github/**" | |
- "!.github/workflows/benchmark.yml" | |
- ".buildkite/**" | |
- "*.md" | |
- "LICENSE" | |
- "CODEOWNERS" | |
- "renovate.json" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Install cargo-codspeed | |
run: cargo install cargo-codspeed | |
- name: "Build the benchmark targets: schema" | |
run: cargo codspeed build -p schema --features all_connectors | |
- name: "Build the benchmark targets: request-handlers" | |
run: cargo codspeed build -p request-handlers --features native,all | |
- name: Run the benchmarks | |
uses: CodSpeedHQ/action@v2 | |
with: | |
run: cargo codspeed run | |
token: ${{ secrets.CODSPEED_TOKEN }} |