-
Notifications
You must be signed in to change notification settings - Fork 392
enhance(ci): add fast benchmark artifact workflow #1827
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| name: Build Benchmark Fixtures | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - "forks/osaka" | ||
| - "forks/amsterdam" | ||
|
Comment on lines
+6
to
+7
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should only generate for the default fork, especially as we only generate benchmark fixtures for Prague. I guess this will be Amsterdam very soon :)
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agree here. There is not an automatic option for default fork here so leaving as is for now. |
||
| paths: | ||
| # Benchmark test files | ||
| - "tests/benchmark/**" | ||
| # Precompile specs used by benchmark tests | ||
| - "tests/prague/eip2537_bls_12_381_precompiles/spec.py" | ||
| - "tests/osaka/eip7951_p256verify_precompiles/spec.py" | ||
| # Benchmark specific framework files | ||
| - "packages/testing/src/execution_testing/benchmark/**" | ||
| # CI benchmark configuration | ||
| - ".github/configs/evm.yaml" | ||
| - ".github/configs/feature.yaml" | ||
| - ".github/actions/build-fixtures/**" | ||
| - ".github/actions/build-evm-base/**" | ||
| - ".github/actions/build-evm-client/evmone/**" | ||
| # This workflow itself | ||
| - ".github/workflows/artifact_benchmark_fast.yaml" | ||
| workflow_dispatch: | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: [self-hosted-ghr, size-gigachungus-x64] | ||
| timeout-minutes: 720 | ||
| steps: | ||
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
| with: | ||
| submodules: true | ||
|
|
||
| - uses: ./.github/actions/build-fixtures | ||
| with: | ||
| release_name: benchmark_fast | ||
| uv_version: ${{ vars.UV_VERSION }} | ||
| python_version: ${{ vars.DEFAULT_PYTHON_VERSION }} | ||
Uh oh!
There was an error while loading. Please reload this page.