Skip to content

chore(ci): Use matrix for tracking the runner #2

chore(ci): Use matrix for tracking the runner

chore(ci): Use matrix for tracking the runner #2

name: Benchmark Baseline
permissions:
contents: read
on:
push:
branches: master
jobs:
bench:
name: Binary Size
strategy:
matrix:
build: [linux]
include:
- build: linux
os: buildjet-8vcpu-ubuntu-2204
runs-on: "${{ matrix.os }}"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Install Bencher
uses: bencherdev/bencher@main
- name: Build
run: "cargo build --package clap --example git-derive -F derive --release"
env:
CARGO_PROFILE_RELEASE_STRIP: true
- name: Report
run: |
bencher run \
--project "${{ github.repository }}" \
--branch "${{ github.ref_name }}" \
--testbed "${{ matrix.os }}" \
--token '${{ secrets.BENCHER_API_TOKEN }}' \
--github-actions '${{ secrets.GITHUB_TOKEN }}' \
--adapter json \
--file-size target/release/examples/git-derive
permissions:

Check failure on line 44 in .github/workflows/bench-baseline.yml

View workflow run for this annotation

GitHub Actions / Benchmark Baseline

Invalid workflow file

The workflow is not valid. .github/workflows/bench-baseline.yml (Line: 44, Col: 7): Unexpected value 'permissions'
checks: write