feat(linter): add missing test cases to no-empty-interface and add config #7197
Workflow file for this run
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
name: Benchmark | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- '**/*.rs' | |
- 'Cargo.lock' | |
- '.github/workflows/benchmark.yml' | |
- 'tasks/benchmark/codspeed/*.mjs' | |
push: | |
branches: | |
- main | |
- bench-* | |
paths: | |
- '**/*.rs' | |
- 'Cargo.lock' | |
- '.github/workflows/benchmark.yml' | |
- 'tasks/benchmark/codspeed/*.mjs' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
benchmark: | |
name: Benchmark | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Run each benchmark in own job. | |
# Linter benchmark is by far the slowest, so split each fixture into own job. | |
component: [lexer, parser, transformer, semantic, minifier, codegen_sourcemap] | |
include: | |
- component: linter | |
fixture: 0 | |
- component: linter | |
fixture: 1 | |
- component: linter | |
fixture: 2 | |
- component: linter | |
fixture: 3 | |
- component: linter | |
fixture: 4 | |
steps: | |
- name: Checkout Branch | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
persist-credentials: false | |
- name: Install Rust Toolchain | |
uses: ./.github/actions/rustup | |
with: | |
shared-key: 'benchmark' | |
save-cache: ${{ github.ref_name == 'main' }} | |
- name: Install codspeed | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-codspeed | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: 'https://registry.npmjs.org' | |
- name: Start bench results interceptor server | |
working-directory: ./tasks/benchmark/codspeed | |
env: | |
COMPONENT: ${{ matrix.component }} | |
FIXTURE: ${{ matrix.fixture }} | |
run: | | |
corepack enable | |
pnpm install | |
node capture.mjs & | |
- name: Build Benchmark | |
env: | |
RUSTFLAGS: "-C debuginfo=2 -C strip=none -g --cfg codspeed" | |
shell: bash | |
run: | | |
cargo build --release -p oxc_benchmark --features codspeed --bench ${{ matrix.component }} | |
mkdir -p target/codspeed/oxc_benchmark/ | |
mv target/release/deps/${{ matrix.component }}-* target/codspeed/oxc_benchmark | |
rm -rf target/codspeed/oxc_benchmark/*.d | |
- name: Run benchmark | |
uses: CodSpeedHQ/action@v2 | |
timeout-minutes: 30 | |
env: | |
FIXTURE: ${{ matrix.fixture }} | |
with: | |
run: cargo codspeed run | |
# Dummy token for tokenless runs, to suppress logging hash of metadata JSON (see `upload.mjs`) | |
token: ${{ secrets.CODSPEED_TOKEN || 'dummy' }} | |
upload-url: http://localhost:${{ env.INTERCEPT_PORT }}/upload | |
- name: Upload bench data artefact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.component }}${{ matrix.fixture }} | |
path: ${{ env.DATA_DIR }} | |
if-no-files-found: error | |
retention-days: 1 | |
upload: | |
name: Upload benchmarks | |
needs: benchmark | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Branch | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
persist-credentials: false | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: 'https://registry.npmjs.org' | |
- name: Create temp dir | |
working-directory: ./tasks/benchmark/codspeed | |
run: | | |
corepack enable | |
pnpm install | |
node create_temp_dir.mjs | |
- name: Download artefacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: ${{ env.DATA_DIR }} | |
merge-multiple: true | |
- name: Upload to Codspeed | |
working-directory: ./tasks/benchmark/codspeed | |
env: | |
CODSPEED_TOKEN: ${{ secrets.CODSPEED_TOKEN }} | |
run: node upload.mjs |