Skip to content

Commit 72a4030

Browse files
runspiredMehulKChaudhari
authored andcommitted
chore: update main version of perf checks
1 parent 9a69e08 commit 72a4030

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

.github/workflows/perf-check.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
with:
6060
experiment-build-command: pnpm --filter performance-test-app build --outDir dist-experiment
6161
experiment-serve-command: pnpm --filter performance-test-app start dist-experiment -p 4201
62-
control-build-command: pnpm --filter performance-test-app exec ember build -e production --output-path dist-control --suppress-sizes
63-
control-serve-command: pnpm --filter performance-test-app exec ember s --path dist-control
62+
control-build-command: pnpm --filter performance-test-app build --outDir dist-control
63+
control-serve-command: pnpm --filter performance-test-app start dist-control -p 4200
6464
control-sha: origin/main
6565
sample-timeout: 60
6666
use-pnpm: true

.github/workflows/perf-over-release.yml

+15-4
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,14 @@ jobs:
5353
run: |
5454
BROWSER_FLAGS=$(node ./scripts/perf-tracking/browser-flags.mjs)
5555
echo "BROWSER_FLAGS=$BROWSER_FLAGS" >> $GITHUB_OUTPUT
56+
# env:
57+
# DEBUG: true
5658
- uses: tracerbench/tracerbench-compare-action@6b56fb774f78e4a85cf02396412b0164870cdab3
5759
with:
58-
experiment-build-command: pnpm install && pnpm --filter performance-test-app build
59-
experiment-serve-command: pnpm --filter performance-test-app exec ember s --path dist-experiment --port 4201
60-
control-build-command: pnpm install && pnpm --filter performance-test-app exec ember build -e production --output-path dist-control --suppress-sizes
61-
control-serve-command: pnpm --filter performance-test-app exec ember s --path dist-control
60+
experiment-build-command: pnpm --filter performance-test-app build --outDir dist-experiment
61+
experiment-serve-command: pnpm --filter performance-test-app start dist-experiment -p 4201
62+
control-build-command: pnpm --filter performance-test-app build --outDir dist-control
63+
control-serve-command: pnpm --filter performance-test-app start dist-control -p 4200
6264
sample-timeout: 60
6365
use-pnpm: true
6466
browser-args: ${{ steps.browser-flags.outputs.BROWSER_FLAGS }}
@@ -114,6 +116,15 @@ jobs:
114116
control-sha: origin/release
115117
upload-traces: true
116118
upload-results: true
119+
# env:
120+
# DEBUG: '*,-babel*,-vite*,-rollup*,-ember*,-broccoli*,-pnpm*,-embroider*,-tree-sync*,-fs-tree-diff*'
121+
# - name: Upload Assets
122+
# if: failure() || success()
123+
# uses: actions/upload-artifact@v4
124+
# with:
125+
# name: built-files
126+
# path: 'tests/performance/dist-*'
127+
# retention-days: 1
117128
- name: Report TracerBench Results
118129
if: failure() || success()
119130
env:

0 commit comments

Comments
 (0)