forked from paritytech/polkadot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
189 additions
and
67 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,122 @@ | ||
name: Short benchmarks | ||
|
||
on: | ||
push: | ||
branches: | ||
- mak-frame-omnibench-checks # TODO: master | ||
pull_request: | ||
# TODO: types: [ opened, synchronize, reopened, ready_for_review ] | ||
workflow_dispatch: # TODO: remove | ||
merge_group: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
RUSTFLAGS: "-C debug-assertions -D warnings" | ||
RUST_BACKTRACE: "full" | ||
WASM_BUILD_NO_COLOR: 1 | ||
WASM_BUILD_RUSTFLAGS: "-C debug-assertions -D warnings" | ||
ARTIFACTS_NAME: frame-omni-bencher-artifacts | ||
|
||
jobs: | ||
changes: | ||
if: startsWith(github.event.comment.body, '/recheck') || github.event_name == 'workflow_dispatch' | ||
permissions: | ||
pull-requests: read | ||
uses: ./.github/workflows/reusable-check-changed-files.yml | ||
set-image: | ||
# GitHub Actions allows using 'env' in a container context. | ||
# However, env variables don't work for forks: https://github.com/orgs/community/discussions/44322 | ||
# This workaround sets the container image for each job using 'set-image' job output. | ||
runs-on: ubuntu-latest | ||
needs: changes | ||
if: ${{ needs.changes.outputs.rust }} | ||
outputs: | ||
IMAGE: ${{ steps.set_image.outputs.IMAGE }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- id: set_image | ||
run: cat .github/env >> $GITHUB_OUTPUT | ||
|
||
build-frame-omni-bencher: | ||
runs-on: arc-runners-beefy-stg # TODO: arc-runners-polkadot-sdk-beefy | ||
needs: [ set-image, changes ] | ||
if: ${{ needs.changes.outputs.rust }} | ||
timeout-minutes: 30 | ||
container: | ||
image: ${{ needs.set-image.outputs.IMAGE }} | ||
env: | ||
# Enable debug assertions since we are running optimized builds for testing | ||
# but still want to have debug assertions. | ||
RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build | ||
run: | | ||
forklift cargo build --release --locked -p frame-omni-bencher --workspace | ||
# archive the target directory | ||
tar -czf $ARCHIVE_NAME target | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ env.ARTIFACTS_NAME }} | ||
retention-days: 1 | ||
compression-level: 9 | ||
path: ./target | ||
|
||
run-frame-omni-bencher: | ||
runs-on: arc-runners-beefy-stg # TODO:arc-runners-polkadot-sdk-beefy | ||
needs: [ set-image, changes ] | ||
if: ${{ needs.changes.outputs.rust }} | ||
timeout-minutes: 30 | ||
strategy: | ||
matrix: | ||
runtime: | ||
[ | ||
westend-runtime, | ||
rococo-runtime, | ||
asset-hub-rococo-runtime, | ||
asset-hub-westend-runtime, | ||
bridge-hub-rococo-runtime, | ||
bridge-hub-westend-runtime, | ||
collectives-westend-runtime, | ||
coretime-rococo-runtime, | ||
coretime-westend-runtime, | ||
people-rococo-runtime, | ||
people-westend-runtime, | ||
glutton-westend-runtime, | ||
] | ||
container: | ||
image: ${{ needs.set-image.outputs.IMAGE }} | ||
env: | ||
# Enable debug assertions since we are running optimized builds for testing | ||
# but still want to have debug assertions. | ||
RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: ./target | ||
|
||
- name: script | ||
run: | | ||
RUNTIME_BLOB_NAME=$(echo $PACKAGE_NAME | sed 's/-/_/g').compact.compressed.wasm | ||
RUNTIME_BLOB_PATH=./target/release/wbuild/$PACKAGE_NAME/$RUNTIME_BLOB_NAME | ||
echo "Running short benchmarking for PACKAGE_NAME=$PACKAGE_NAME and RUNTIME_BLOB_PATH=$RUNTIME_BLOB_PATH" | ||
ls -lrt $RUNTIME_BLOB_PATH | ||
./target/release/frame-omni-bencher v1 benchmark pallet --runtime $RUNTIME_BLOB_PATH --all --steps 2 --repeat 1 | ||
confirm-frame-omni-benchers-passed: | ||
runs-on: ubuntu-latest | ||
name: All migrations passed | ||
needs: run-frame-omni-bencher | ||
steps: | ||
- run: echo '### Good job! All the benchmarks passed 🚀' >> $GITHUB_STEP_SUMMARY |
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,57 @@ | ||
# Reusable workflow to perform checks and generate conditions for other workflows. | ||
# Currently it checks if any Rust (build-related) file is changed | ||
# and if the current (caller) workflow file is changed. | ||
# Example: | ||
# | ||
# jobs: | ||
# changes: | ||
# permissions: | ||
# pull-requests: read | ||
# uses: ./.github/workflows/reusable-check-changed-files.yml | ||
# some-job: | ||
# needs: changes | ||
# if: ${{ needs.changes.outputs.rust }} | ||
# ....... | ||
|
||
name: Check changes files | ||
|
||
on: | ||
workflow_call: | ||
# Map the workflow outputs to job outputs | ||
outputs: | ||
rust: | ||
value: ${{ jobs.changes.outputs.rust }} | ||
description: "true if any of the build-related OR current (caller) workflow files have changed" | ||
current-workflow: | ||
value: ${{ jobs.changes.outputs.current-workflow }} | ||
description: "true if current (caller) workflow file has changed" | ||
|
||
jobs: | ||
changes: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: read | ||
outputs: | ||
# true if current workflow (caller) file is changed | ||
rust: ${{ steps.filter.outputs.rust == 'true' || steps.filter.outputs.current-workflow == 'true' }} | ||
current-workflow: ${{ steps.filter.outputs.current-workflow }} | ||
steps: | ||
- id: current-file | ||
run: echo "current-workflow-file=$(echo ${{ github.workflow_ref }} | sed -nE "s/.*(\.github\/workflows\/[a-zA-Z0-9_-]*\.y[a]?ml)@refs.*/\1/p")" >> $GITHUB_OUTPUT | ||
- run: echo "${{ steps.current-file.outputs.current-workflow-file }}" | ||
# For pull requests it's not necessary to checkout the code | ||
- id: filter | ||
uses: dorny/paths-filter@v3 | ||
with: | ||
predicate-quantifier: "every" | ||
# current-workflow - check if the current (caller) workflow file is changed | ||
# rust - check if any Rust (build-related) file is changed | ||
filters: | | ||
current-workflow: | ||
- '${{ steps.current-file.outputs.current-workflow-file }}' | ||
rust: | ||
- '**/*' | ||
- '!.github/**/*' | ||
- '!prdoc/**/*' | ||
- '!docs/**/*' | ||
# |
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
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