forked from prisma/prisma-engines
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 1013 Bytes
/
codspeed.yml
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
33
34
35
36
37
38
39
40
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: actions-rust-lang/setup-rust-toolchain@v1
- name: Install cargo-codspeed
run: cargo install --locked 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 all
- name: Run the benchmarks
uses: CodSpeedHQ/action@v2
with:
run: cargo codspeed run
token: ${{ secrets.CODSPEED_TOKEN }}