-
Notifications
You must be signed in to change notification settings - Fork 680
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ao-fix-parainclusion-weight-overestimation' into ao-ena…
…ct-candidate-weight * ao-fix-parainclusion-weight-overestimation: Remove redundant minimal template workspace (#5330) approval-distribution: Fix handling of conclude (#5375) More logs in `is_potential_spam` from `dispute-coordinator` (#5252) Fix zombienet bridges test (#5373) Update Readme of the `polkadot` crate (#5326) allow for `u8` to be used as hold/freeze reason (#5348) Moving cargo check for runtimes to GHA (#5340) Update links in the documentation (#5175) fix visibility for `pallet_nfts` types used as call arguments (#3634) Correct some typos in crates' descriptions (#5262) Aura: Ensure we are building on each relay chain fork (#5352) Update Identity pallet README.md (#5183) Bump trie-db from 0.29.0 to 0.29.1 (#5231) [Coretime] Always include UnpaidExecution, not just when revenue is > 0 (#5369) [Pools] fix derivation of pool account (#4999) Upgrade accidentally downgraded deps (#5365) [Pools] Fix issues with member migration to `DelegateStake` (#4822) Unify `no_genesis` check (#5360) [CI] Fix prdoc command (#5358) Beefy: add benchmarks for `report_fork_voting()` (#5188)
- Loading branch information
Showing
74 changed files
with
2,469 additions
and
998 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: 'cargo check runtimes' | ||
description: 'Runs `cargo check` for every directory in provided root.' | ||
inputs: | ||
root: | ||
description: "Root directory. Expected to contain several cargo packages inside." | ||
required: true | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Check | ||
shell: bash | ||
run: | | ||
mkdir -p ~/.forklift | ||
cp .forklift/config.toml ~/.forklift/config.toml | ||
cd ${{ inputs.root }} | ||
for directory in $(echo */); do | ||
echo "_____Running cargo check for ${directory} ______"; | ||
cd ${directory}; | ||
pwd; | ||
SKIP_WASM_BUILD=1 forklift cargo check --locked; | ||
cd ..; | ||
done |
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,136 @@ | ||
name: Check Cargo Check Runtimes | ||
|
||
on: | ||
pull_request: | ||
types: [ opened, synchronize, reopened, ready_for_review, labeled ] | ||
|
||
|
||
# Jobs in this workflow depend on each other, only for limiting peak amount of spawned workers | ||
|
||
jobs: | ||
# 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. | ||
set-image: | ||
if: contains(github.event.label.name, 'GHA-migration') || contains(github.event.pull_request.labels.*.name, 'GHA-migration') | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
outputs: | ||
IMAGE: ${{ steps.set_image.outputs.IMAGE }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- id: set_image | ||
run: cat .github/env >> $GITHUB_OUTPUT | ||
check-runtime-assets: | ||
runs-on: arc-runners-polkadot-sdk-beefy | ||
needs: [set-image] | ||
timeout-minutes: 20 | ||
container: | ||
image: ${{ needs.set-image.outputs.IMAGE }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run cargo check | ||
uses: ./.github/actions/cargo-check-runtimes | ||
with: | ||
root: cumulus/parachains/runtimes/assets | ||
|
||
check-runtime-collectives: | ||
runs-on: arc-runners-polkadot-sdk-beefy | ||
needs: [check-runtime-assets, set-image] | ||
timeout-minutes: 20 | ||
container: | ||
image: ${{ needs.set-image.outputs.IMAGE }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run cargo check | ||
uses: ./.github/actions/cargo-check-runtimes | ||
with: | ||
root: cumulus/parachains/runtimes/collectives | ||
|
||
check-runtime-coretime: | ||
runs-on: arc-runners-polkadot-sdk-beefy | ||
container: | ||
image: ${{ needs.set-image.outputs.IMAGE }} | ||
needs: [check-runtime-assets, set-image] | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run cargo check | ||
uses: ./.github/actions/cargo-check-runtimes | ||
with: | ||
root: cumulus/parachains/runtimes/coretime | ||
|
||
check-runtime-bridge-hubs: | ||
runs-on: arc-runners-polkadot-sdk-beefy | ||
container: | ||
image: ${{ needs.set-image.outputs.IMAGE }} | ||
needs: [set-image] | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run cargo check | ||
uses: ./.github/actions/cargo-check-runtimes | ||
with: | ||
root: cumulus/parachains/runtimes/bridge-hubs | ||
|
||
check-runtime-contracts: | ||
runs-on: arc-runners-polkadot-sdk-beefy | ||
container: | ||
image: ${{ needs.set-image.outputs.IMAGE }} | ||
needs: [check-runtime-collectives, set-image] | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run cargo check | ||
uses: ./.github/actions/cargo-check-runtimes | ||
with: | ||
root: cumulus/parachains/runtimes/contracts | ||
|
||
check-runtime-starters: | ||
runs-on: arc-runners-polkadot-sdk-beefy | ||
container: | ||
image: ${{ needs.set-image.outputs.IMAGE }} | ||
needs: [check-runtime-assets, set-image] | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run cargo check | ||
uses: ./.github/actions/cargo-check-runtimes | ||
with: | ||
root: cumulus/parachains/runtimes/starters | ||
|
||
check-runtime-testing: | ||
runs-on: arc-runners-polkadot-sdk-beefy | ||
container: | ||
image: ${{ needs.set-image.outputs.IMAGE }} | ||
needs: [check-runtime-starters, set-image] | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run cargo check | ||
uses: ./.github/actions/cargo-check-runtimes | ||
with: | ||
root: cumulus/parachains/runtimes/testing | ||
|
||
confirm-required-jobs-passed: | ||
runs-on: ubuntu-latest | ||
name: All check-runtime-* tests passed | ||
# If any new job gets added, be sure to add it to this array | ||
needs: | ||
- check-runtime-assets | ||
- check-runtime-collectives | ||
- check-runtime-coretime | ||
- check-runtime-bridge-hubs | ||
- check-runtime-contracts | ||
- check-runtime-starters | ||
- check-runtime-testing | ||
steps: | ||
- run: echo '### Good job! All the tests 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
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
Oops, something went wrong.