Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf(bench): Run benchmark on a custom runner #9877

Merged
merged 33 commits into from
Jan 14, 2025
Merged
Changes from 4 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
12 changes: 10 additions & 2 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,12 @@ jobs:

bench-all:
name: Bench everything
runs-on:
- self-hosted
- linux
- x64
if: >-
${{ !contains(github.event.head_commit.message, 'chore: ') }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand All @@ -91,7 +94,12 @@ jobs:
with:
profile: minimal

- uses: ./.github/actions/setup-node
- name: Install GLIBC 2.34
run: |
sudo apt-get update
sudo apt-get install libc6=2.34-0ubuntu3

# - uses: ./.github/actions/setup-node

- name: Install cargo-codspeed
uses: taiki-e/install-action@v2
Expand Down
Loading