-
-
Notifications
You must be signed in to change notification settings - Fork 99
84 lines (77 loc) · 2.46 KB
/
benchmark.yml
File metadata and controls
84 lines (77 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Benchmark
on:
pull_request:
branches:
- master
paths:
- 'packages/normalizr/src/**'
- 'packages/endpoint/src/schemas/**'
- 'packages/core/src/**'
- 'examples/benchmark/**'
- '.github/workflows/benchmark.yml'
push:
branches:
- master
paths:
- 'packages/normalizr/src/**'
- 'packages/endpoint/src/schemas/**'
- 'packages/core/src/**'
- 'examples/benchmark/**'
- '.github/workflows/benchmark.yml'
permissions:
contents: write
pull-requests: write
concurrency:
group: ${{ github.event_name == 'push' && 'gh-pages-bench-node-push' || format('benchmark-node-{0}', github.head_ref) }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1
- uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'yarn'
- name: Install packages
run: ./scripts/ci-install.sh examples/benchmark
- name: Build packages
run: yarn build:benchmark
- name: Tune system for benchmarking
run: |
# Pin CPU governor to performance mode (reduces frequency scaling jitter)
for gov in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do
echo performance | sudo tee "$gov" 2>/dev/null || true
done
# Disable swap to prevent memory pressure variance
sudo swapoff -a || true
- name: Run benchmark
run: taskset -c 0,1 yarn workspace example-benchmark start | tee output.txt
# PR comments on changes
- name: Store benchmark result (PR)
if: ${{ github.event_name == 'pull_request' }}
uses: rhysd/github-action-benchmark@v1
with:
tool: 'benchmarkjs'
output-file-path: output.txt
github-token: "${{ secrets.GITHUB_TOKEN }}"
gh-pages-branch: 'gh-pages-bench'
alert-threshold: '150%'
comment-always: true
fail-on-alert: false
alert-comment-cc-users: '@ntucker'
save-data-file: false
auto-push: false
# master reports to history
- name: Store benchmark result (main)
if: ${{ github.event_name == 'push' }}
uses: rhysd/github-action-benchmark@v1
with:
tool: 'benchmarkjs'
output-file-path: output.txt
github-token: "${{ secrets.GITHUB_TOKEN }}"
gh-pages-branch: 'gh-pages-bench'
auto-push: true
fail-on-alert: false