Some checks failed
Test examples / Test Examples (20) (push) Has been cancelled
Test examples / Test Examples (22) (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Trigger Release / start (push) Has been cancelled
Stale issue handler / stale (push) Has been cancelled
Update Font Data / create-pull-request (push) Has been cancelled
build-and-deploy / deploy-target (push) Has been cancelled
build-and-deploy / build (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / build-wasm (nodejs) (push) Has been cancelled
build-and-deploy / build-wasm (web) (push) Has been cancelled
build-and-deploy / Deploy preview tarball (push) Has been cancelled
build-and-deploy / Potentially publish release (push) Has been cancelled
build-and-deploy / publish-turbopack-npm-packages (push) Has been cancelled
build-and-deploy / Deploy examples (push) Has been cancelled
build-and-deploy / thank you, build (push) Has been cancelled
build-and-deploy / Upload Turbopack Bytesize metrics to Datadog (push) Has been cancelled
Rspack Next.js development integration tests / Rspack integration tests (push) Has been cancelled
Rspack Next.js production integration tests / Rspack integration tests (push) Has been cancelled
Turbopack Next.js development integration tests / Next.js integration tests (push) Has been cancelled
Turbopack Next.js production integration tests / Next.js integration tests (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack development test manifest (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack production test manifest (push) Has been cancelled
Upload bundler test manifests to areweturboyet.com / Upload test results (push) Has been cancelled
Update React / create-pull-request (push) Has been cancelled
test-e2e-project-reset-cron / reset-test-project (push) Has been cancelled
Notify about the top 15 issues/PRs/feature requests (most reacted) in the last 90 days / run (push) Has been cancelled
70 lines
1.9 KiB
YAML
70 lines
1.9 KiB
YAML
name: Turbopack Rust testing benchmarks
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
runner:
|
|
type: string
|
|
default: '["self-hosted", "linux", "x64", "metal"]'
|
|
os:
|
|
type: string
|
|
default: 'linux'
|
|
all:
|
|
type: boolean
|
|
default: false
|
|
|
|
env:
|
|
TURBOPACK_BENCH_COUNTS: '100'
|
|
TURBOPACK_BENCH_PROGRESS: '1'
|
|
|
|
NODE_LTS_VERSION: 20
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ${{ fromJSON(inputs.runner) }}
|
|
steps:
|
|
- name: Set git to use LF
|
|
run: |
|
|
git config --global core.autocrlf false
|
|
git config --global core.eol lf
|
|
if: inputs.os == 'windows'
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Rust
|
|
uses: ./.github/actions/setup-rust
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ env.NODE_LTS_VERSION }}
|
|
check-latest: true
|
|
- run: corepack enable
|
|
|
|
# We need to install the dependencies for the benchmark apps
|
|
- run: pnpm install
|
|
working-directory: turbopack/benchmark-apps
|
|
|
|
- name: Build benchmarks for tests
|
|
timeout-minutes: 120
|
|
run: |
|
|
cargo test --benches --workspace --release --no-fail-fast --exclude turbopack-bench --exclude next-napi-bindings --no-run
|
|
|
|
- name: Run cargo test on benchmarks
|
|
timeout-minutes: 120
|
|
run: |
|
|
cargo test --benches --workspace --release --no-fail-fast --exclude turbopack-bench --exclude next-napi-bindings
|
|
|
|
- name: Build benchmarks for tests for other bundlers
|
|
if: inputs.all
|
|
timeout-minutes: 120
|
|
run: |
|
|
cargo test --benches --release -p turbopack-bench --no-run
|
|
|
|
- name: Run cargo test on benchmarks for other bundlers
|
|
if: inputs.all
|
|
timeout-minutes: 120
|
|
run: |
|
|
cargo test --benches --release -p turbopack-bench
|