This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
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.
Merge branch 'master' into snowbridge
# Conflicts: # .github/workflows/check-features.yml # .github/workflows/check-licenses.yml # .github/workflows/issues-auto-label.yml # .github/workflows/misc-notify-burnin-label.yml # .github/workflows/misc-review-bot-merge-queue.yml # .github/workflows/publish-check-crates.yml # .github/workflows/publish-claim-crates.yml # .github/workflows/publish-subsystem-benchmarks.yml # .github/workflows/release-99_notif-published.yml # .github/workflows/release-build-and-attach-runtimes.yml # .github/workflows/release-check-runtimes.yml # .github/workflows/release-srtool.yml # .github/workflows/review-bot.yml # .github/workflows/review-trigger.yml # cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests/snowbridge.rs
- Loading branch information
Showing
1,656 changed files
with
76,625 additions
and
31,408 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
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,33 @@ | ||
[compression] | ||
type = "zstd" | ||
|
||
[compression.zstd] | ||
compressionLevel = 3 | ||
|
||
[general] | ||
jobNameVariable = "CI_JOB_NAME" | ||
jobsBlackList = [] | ||
logLevel = "warn" | ||
threadsCount = 6 | ||
|
||
[cache] | ||
extraEnv = ["RUNTIME_METADATA_HASH"] | ||
|
||
[metrics] | ||
enabled = true | ||
pushEndpoint = "placeholder" | ||
|
||
[metrics.extraLabels] | ||
environment = "production" | ||
job_name = "$CI_JOB_NAME" | ||
project_name = "$CI_PROJECT_PATH" | ||
|
||
[storage] | ||
type = "s3" | ||
|
||
[storage.s3] | ||
accessKeyId = "placeholder" | ||
bucketName = "placeholder" | ||
concurrency = 10 | ||
endpointUrl = "placeholder" | ||
secretAccessKey = "placeholder" |
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,9 @@ | ||
coverage: | ||
precision: 2 | ||
round: down | ||
range: "1...100" | ||
status: | ||
project: | ||
default: | ||
target: 1.0 | ||
threshold: 2.0 |
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 @@ | ||
IMAGE="docker.io/paritytech/ci-unified:bullseye-1.77.0-2024-04-10-v20240408" |
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,40 @@ | ||
""" | ||
Script to deny Git dependencies in the Cargo workspace. Can be passed one optional argument for the | ||
root folder. If not provided, it will use the cwd. | ||
## Usage | ||
python3 .github/scripts/deny-git-deps.py polkadot-sdk | ||
""" | ||
|
||
import os | ||
import sys | ||
|
||
from cargo_workspace import Workspace, DependencyLocation | ||
|
||
KNOWN_BAD_GIT_DEPS = { | ||
'simple-mermaid': ['xcm-docs'], | ||
# Fix in <https://github.com/paritytech/polkadot-sdk/issues/2922> | ||
'bandersnatch_vrfs': ['sp-core'], | ||
} | ||
|
||
root = sys.argv[1] if len(sys.argv) > 1 else os.getcwd() | ||
workspace = Workspace.from_path(root) | ||
|
||
def check_dep(dep, used_by): | ||
if dep.location != DependencyLocation.GIT: | ||
return | ||
|
||
if used_by in KNOWN_BAD_GIT_DEPS.get(dep.name, []): | ||
print(f'🤨 Ignoring git dependency {dep.name} in {used_by}') | ||
else: | ||
print(f'🚫 Found git dependency {dep.name} in {used_by}') | ||
sys.exit(1) | ||
|
||
# Check the workspace dependencies that can be inherited: | ||
for dep in workspace.dependencies: | ||
check_dep(dep, "workspace") | ||
|
||
# And the dependencies of each crate: | ||
for crate in workspace.crates: | ||
for dep in crate.dependencies: | ||
check_dep(dep, crate.name) |
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/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
name: check-runtime-migration | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
merge_group: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
FORKLIFT_storage_s3_bucketName: ${{ secrets.FORKLIFT_storage_s3_bucketName }} | ||
FORKLIFT_storage_s3_accessKeyId: ${{ secrets.FORKLIFT_storage_s3_accessKeyId }} | ||
FORKLIFT_storage_s3_secretAccessKey: ${{ secrets.FORKLIFT_storage_s3_secretAccessKey }} | ||
FORKLIFT_storage_s3_endpointUrl: ${{ secrets.FORKLIFT_storage_s3_endpointUrl }} | ||
FORKLIFT_metrics_pushEndpoint: ${{ secrets.FORKLIFT_metrics_pushEndpoint }} | ||
|
||
jobs: | ||
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 | ||
outputs: | ||
IMAGE: ${{ steps.set_image.outputs.IMAGE }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- id: set_image | ||
run: cat .github/env >> $GITHUB_OUTPUT | ||
# rococo and westend are disabled for now (no access to parity-chains.parity.io) | ||
check-runtime-migration: | ||
runs-on: arc-runners-polkadot-sdk-beefy | ||
timeout-minutes: 30 | ||
needs: [set-image] | ||
container: | ||
image: ${{ needs.set-image.outputs.IMAGE }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
network: [ | ||
# westend, | ||
# rococo, | ||
asset-hub-westend, | ||
asset-hub-rococo, | ||
bridge-hub-westend, | ||
bridge-hub-rococo, | ||
contracts-rococo, | ||
collectives-westend, | ||
coretime-rococo, | ||
] | ||
include: | ||
# - network: westend | ||
# package: westend-runtime | ||
# wasm: westend_runtime.compact.compressed.wasm | ||
# uri: "wss://westend-try-runtime-node.parity-chains.parity.io:443" | ||
# subcommand_extra_args: "--no-weight-warnings" | ||
# command_extra_args: "" | ||
# - network: rococo | ||
# package: rococo-runtime | ||
# wasm: rococo_runtime.compact.compressed.wasm | ||
# uri: "wss://rococo-try-runtime-node.parity-chains.parity.io:443" | ||
# subcommand_extra_args: "--no-weight-warnings" | ||
# command_extra_args: "" | ||
- network: asset-hub-westend | ||
package: asset-hub-westend-runtime | ||
wasm: asset_hub_westend_runtime.compact.compressed.wasm | ||
uri: "wss://westend-asset-hub-rpc.polkadot.io:443" | ||
subcommand_extra_args: "" | ||
command_extra_args: "" | ||
- network: "asset-hub-rococo" | ||
package: "asset-hub-rococo-runtime" | ||
wasm: "asset_hub_rococo_runtime.compact.compressed.wasm" | ||
uri: "wss://rococo-asset-hub-rpc.polkadot.io:443" | ||
subcommand_extra_args: "" | ||
command_extra_args: "" | ||
- network: "bridge-hub-westend" | ||
package: "bridge-hub-westend-runtime" | ||
wasm: "bridge_hub_westend_runtime.compact.compressed.wasm" | ||
uri: "wss://westend-bridge-hub-rpc.polkadot.io:443" | ||
- network: "bridge-hub-rococo" | ||
package: "bridge-hub-rococo-runtime" | ||
wasm: "bridge_hub_rococo_runtime.compact.compressed.wasm" | ||
uri: "wss://rococo-bridge-hub-rpc.polkadot.io:443" | ||
- network: "contracts-rococo" | ||
package: "contracts-rococo-runtime" | ||
wasm: "contracts_rococo_runtime.compact.compressed.wasm" | ||
uri: "wss://rococo-contracts-rpc.polkadot.io:443" | ||
- network: "collectives-westend" | ||
package: "collectives-westend-runtime" | ||
wasm: "collectives_westend_runtime.compact.compressed.wasm" | ||
uri: "wss://westend-collectives-rpc.polkadot.io:443" | ||
command_extra_args: "--disable-spec-name-check" | ||
- network: "coretime-rococo" | ||
package: "coretime-rococo-runtime" | ||
wasm: "coretime_rococo_runtime.compact.compressed.wasm" | ||
uri: "wss://rococo-coretime-rpc.polkadot.io:443" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: script | ||
run: | | ||
echo "Running ${{ matrix.network }} runtime migration check" | ||
export RUST_LOG=remote-ext=debug,runtime=debug | ||
echo "---------- Downloading try-runtime CLI ----------" | ||
curl -sL https://github.com/paritytech/try-runtime-cli/releases/download/v0.5.4/try-runtime-x86_64-unknown-linux-musl -o try-runtime | ||
chmod +x ./try-runtime | ||
echo "Using try-runtime-cli version:" | ||
./try-runtime --version | ||
echo "---------- Building ${{ matrix.package }} runtime ----------" | ||
time forklift cargo build --release --locked -p ${{ matrix.package }} --features try-runtime | ||
echo "---------- Executing on-runtime-upgrade for ${{ matrix.network }} ----------" | ||
time ./try-runtime ${{ matrix.command_extra_args }} \ | ||
--runtime ./target/release/wbuild/${{ matrix.package }}/${{ matrix.wasm }} \ | ||
on-runtime-upgrade --disable-spec-version-check --checks=all ${{ matrix.subcommand_extra_args }} live --uri ${{ matrix.uri }} | ||
sleep 5 |
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,56 @@ | ||
name: Check semver | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
paths: | ||
- prdoc/*.prdoc | ||
|
||
jobs: | ||
check-semver: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: docker.io/paritytech/ci-unified:bullseye-1.77.0-2024-04-10-v20240408 | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Rust Cache | ||
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3 | ||
with: | ||
cache-on-failure: true | ||
|
||
- name: Rust compilation prerequisites | ||
run: | | ||
rustup default nightly-2024-03-01 | ||
rustup target add wasm32-unknown-unknown --toolchain nightly-2024-03-01 | ||
rustup component add rust-src --toolchain nightly-2024-03-01 | ||
- name: install parity-publish | ||
run: cargo install [email protected] | ||
|
||
- name: extra git setup | ||
run: | | ||
git config --global --add safe.directory '*' | ||
git fetch --no-tags --no-recurse-submodules --depth=1 origin master | ||
git branch old origin/master | ||
- name: check semver | ||
run: | | ||
export CARGO_TARGET_DIR=target | ||
export RUSTFLAGS='-A warnings -A missing_docs' | ||
export SKIP_WASM_BUILD=1 | ||
if ! parity-publish --color always prdoc --since old --validate prdoc/pr_$PR.prdoc --toolchain nightly-2024-03-01 -v; then | ||
cat <<EOF | ||
👋 Hello developer! The SemVer information that you declared in the prdoc file did not match what the CI detected. | ||
Please check the output above and see the following links for more help: | ||
- https://github.com/paritytech/polkadot-sdk/blob/master/docs/contributor/prdoc.md#record-semver-changes | ||
- https://forum.polkadot.network/t/psa-polkadot-sdk-to-use-semver | ||
Otherwise feel free to ask in the Merge Request or in Matrix chat. | ||
EOF | ||
exit 1 | ||
fi | ||
env: | ||
PR: ${{ github.event.pull_request.number }} |
Oops, something went wrong.