We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b04fe commit 22944b4Copy full SHA for 22944b4
.github/workflows/bench-baseline.yml
@@ -7,13 +7,16 @@ on:
7
push:
8
branches: master
9
10
-env:
11
- RUNNER: buildjet-8vcpu-ubuntu-2204
12
-
13
jobs:
14
bench:
15
name: Binary Size
16
- runs-on: "${{ env.RUNNER}}"
+ strategy:
+ matrix:
+ build: [linux]
+ include:
17
+ - build: linux
18
+ os: buildjet-8vcpu-ubuntu-2204
19
+ runs-on: "${{ matrix.os }}"
20
steps:
21
- name: Checkout repository
22
uses: actions/checkout@v4
@@ -33,7 +36,7 @@ jobs:
33
36
bencher run \
34
37
--project "${{ github.repository }}" \
35
38
--branch "${{ github.ref_name }}" \
- --testbed "${{ env.RUNNER}}" \
39
+ --testbed "${{ matrix.os }}" \
40
--token '${{ secrets.BENCHER_API_TOKEN }}' \
41
--github-actions '${{ secrets.GITHUB_TOKEN }}' \
42
--adapter json \
0 commit comments