90 lines
2.2 KiB
YAML
90 lines
2.2 KiB
YAML
name: Benchmark
|
|
|
|
env:
|
|
DEBUG: 'napi:*'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
bench:
|
|
name: Bench
|
|
if: "!contains(github.event.head_commit.message, 'bump')"
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 14
|
|
check-latest: true
|
|
|
|
- name: Install
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
profile: default
|
|
override: true
|
|
|
|
- name: Generate Cargo.lock
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: generate-lockfile
|
|
|
|
- name: Cache cargo registry
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cargo/registry
|
|
key: bench-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Cache cargo index
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cargo/git
|
|
key: bench-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Cache NPM dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: node_modules
|
|
key: bench-${{ hashFiles('yarn.lock') }}
|
|
|
|
- name: 'Install dependencies'
|
|
run: yarn install --frozen-lockfile --registry https://registry.npmjs.org --network-timeout 300000
|
|
|
|
- name: 'Build ts'
|
|
run: yarn build
|
|
|
|
- name: 'Build bench'
|
|
run: yarn build:bench
|
|
|
|
- name: 'Run benchmark'
|
|
run: yarn bench
|
|
|
|
- name: Store benchmark result
|
|
uses: rhysd/github-action-benchmark@v1
|
|
if: github.ref == 'refs/heads/main'
|
|
with:
|
|
tool: 'benchmarkjs'
|
|
output-file-path: bench.txt
|
|
github-token: ${{ secrets.GH_TOKEN }}
|
|
auto-push: true
|
|
|
|
- name: Store benchmark result
|
|
uses: rhysd/github-action-benchmark@v1
|
|
if: github.ref != 'refs/heads/main'
|
|
with:
|
|
tool: 'benchmarkjs'
|
|
output-file-path: bench.txt
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
comment-always: true
|
|
|
|
- name: Clear the cargo caches
|
|
run: |
|
|
cargo install cargo-cache --no-default-features --features ci-autoclean
|
|
cargo-cache
|