-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bench: use bencher for continuous benchmarking
- Loading branch information
1 parent
090dc45
commit 5387b49
Showing
2 changed files
with
90 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: Benchmark Turbopack | ||
on: | ||
push: | ||
branches: [canary] | ||
pull_request: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | ||
|
||
permissions: | ||
actions: write | ||
contents: read | ||
pull-requests: read | ||
|
||
jobs: | ||
turbopack_rust_check: | ||
name: Turbopack rust check | ||
runs-on: | ||
- 'self-hosted' | ||
- 'linux' | ||
- 'x64' | ||
- 'metal' | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Rust | ||
uses: ./.github/actions/setup-rust | ||
with: | ||
targets: wasm32-unknown-unknown | ||
|
||
- name: Run cargo check release | ||
run: | | ||
RUSTFLAGS="-D warnings -A deprecated" cargo check --workspace --all-targets --features rustls-tls --release | ||
turbopack_bench_pr: | ||
needs: [turbopack_rust_check] | ||
if: github.event_name == 'pull_request' | ||
name: Benchmark and compare Turbopack performance on ${{ matrix.os.title }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- name: linux | ||
title: Linux | ||
quiet: false | ||
runs-on: | ||
- 'self-hosted' | ||
- 'linux' | ||
- 'x64' | ||
- 'metal' | ||
|
||
runs-on: ${{ matrix.os.runs-on }} | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
# - name: Fetch the base branch | ||
# run: git -c protocol.version=2 fetch --no-tags --progress --no-recurse-submodules --depth=1 origin +${{ github.base_ref }}:base | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ inputs.nodeVersion || env.NODE_LTS_VERSION }} | ||
check-latest: true | ||
|
||
- run: node -v | ||
- run: corepack enable | ||
|
||
- name: Setup Rust | ||
uses: ./.github/actions/setup-rust | ||
|
||
- uses: bencherdev/bencher@main | ||
|
||
- name: Build the benchmark target(s) | ||
run: cargo bench --workspace --exclude turbopack-bench --no-run | ||
|
||
- name: Run the benchmarks | ||
env: | ||
BENCHER_API_TOKEN: ${{ secrets.BENCHER_API_TOKEN }} | ||
BENCHER_PROJECT: 06b087de-c9ba-48ec-b909-ad9f69e97537 | ||
BENCHER_TESTBED: ${{ join(matrix.os.runs-on, '/') }} | ||
run: bencher run --err "cargo bench --workspace --exclude turbopack-bench" |
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