-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Benchmark Debug workflow (#4185)
- Loading branch information
1 parent
4cad961
commit 30873a3
Showing
2 changed files
with
103 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: Benchmark Debug | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
benchmark: | ||
description: 'Which benchmark to run' | ||
type: choice | ||
options: | ||
- 02_replace1k | ||
- 03_update10k | ||
- 07_create10k | ||
- filter_list | ||
- hydrate1k | ||
- many_updates | ||
- text_update | ||
- todo | ||
required: true | ||
base: | ||
description: 'The branch name, tag, or commit sha of the version of preact to benchmark against.' | ||
type: string | ||
default: main | ||
required: false | ||
trace: | ||
description: 'Whether to capture browser traces for this benchmark run' | ||
type: boolean | ||
default: true | ||
required: false | ||
timeout: | ||
description: 'How many minutes to give the benchmark to run before timing out and failing' | ||
type: number | ||
default: 20 | ||
required: false | ||
|
||
jobs: | ||
build_local: | ||
name: Build local package | ||
uses: ./.github/workflows/ci.yml | ||
|
||
build_base: | ||
name: Build base package | ||
uses: ./.github/workflows/ci.yml | ||
with: | ||
ref: ${{ inputs.base }} | ||
artifact_name: base-npm-package | ||
|
||
prepare: | ||
name: Prepare environment | ||
runs-on: ubuntu-latest | ||
needs: | ||
- build_local | ||
- build_base | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Download locally built preact package | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: npm-package | ||
- run: mv preact.tgz preact-local.tgz | ||
- name: Clear working directory | ||
run: | | ||
ls -al | ||
rm -rf * | ||
echo "====================" | ||
ls -al | ||
- name: Upload locally built preact package | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: bench-environment | ||
path: preact-local.tgz | ||
- name: Download base package | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: base-npm-package | ||
- run: mv preact.tgz preact-main.tgz | ||
- name: Upload base preact package | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: bench-environment | ||
path: preact-main.tgz | ||
|
||
benchmark: | ||
name: Bench ${{ inputs.benchmark}} | ||
uses: ./.github/workflows/run-bench.yml | ||
needs: prepare | ||
with: | ||
benchmark: ${{ inputs.benchmark}} | ||
timeout: ${{ inputs.timeout }} | ||
trace: ${{ inputs.trace }} |