Skip to content

Commit f30e5db

Browse files
authored
Run and report benchmarks (vercel#66851)
Using `@vercel/devlow-bench`, this benchmarks changes landed on canary and reports results to Datadog.
1 parent 91c825e commit f30e5db

File tree

7 files changed

+623
-29
lines changed

7 files changed

+623
-29
lines changed

.github/workflows/build_and_test.yml

+19
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,25 @@ jobs:
152152
stepName: 'rust-doc-check'
153153
secrets: inherit
154154

155+
devlow-bench:
156+
name: Run devlow benchmarks
157+
needs: ['changes', 'build-next', 'build-native']
158+
if: ${{ needs.changes.outputs.docs-only == 'false' }}
159+
160+
strategy:
161+
fail-fast: false
162+
matrix:
163+
mode:
164+
- '--turbopack=false'
165+
- '--turbopack=true'
166+
selector:
167+
- '--scenario=heavy-npm-deps --page=homepage'
168+
uses: ./.github/workflows/build_reusable.yml
169+
with:
170+
afterBuild: pnpm install && ./node_modules/.bin/devlow-bench ./scripts/devlow-bench.mjs --datadog=ubuntu-latest-16-core ${{ matrix.mode }} ${{ matrix.selector }}
171+
stepName: 'devlow-bench-${{ matrix.group }}'
172+
secrets: inherit
173+
155174
test-turbopack-dev:
156175
name: test turbopack dev
157176
needs: ['changes', 'build-next', 'build-native']

bench/heavy-npm-deps/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev-application": "next dev --turbo",
6+
"dev-turbopack": "next dev --turbo",
7+
"dev-webpack": "next dev",
78
"build-application": "next build",
89
"start-application": "next start"
910
},

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
"@types/trusted-types": "2.0.3",
115115
"@typescript-eslint/eslint-plugin": "6.14.0",
116116
"@typescript-eslint/parser": "6.14.0",
117+
"@vercel/devlow-bench": "0.3.1",
117118
"@vercel/fetch": "6.1.1",
118119
"@vercel/og": "0.6.2",
119120
"abort-controller": "3.0.0",

packages/next/src/compiled/assert/assert.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/next/src/compiled/util/util.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)