Skip to content

Commit

Permalink
Upgrade polkadot-sdk to version 1.7.2 (#2700)
Browse files Browse the repository at this point in the history
* Use polkadot-sdk to version 1.7.2

* fix runtime-benchmarks for pallet-identity

* fix identity precompile

* fix license check

* fix tests

* update crowdloan-rewards crate

* chore update typescript tests

* replace NativeElseWasmExecutor with WasmExecutor to fix runtime overrides not being loaded

* set delayed_best_block to true in ParachainBlockImport

* initialize block inside tracing method in the runtime api

* fix tracing tests

* fix rust tests

* keep using xcm v3 in some places to avoid having many breaking changes

* add xcm v4 tests

* update moonkit dependency branch

* add new type parameter to pallet async-backing config

* fix coverage job

* derive new test id's

* update Cargo.lock

* update mold linker

* fix leaked dependencies

* use pre-generated chain spec in dev-tests (avoid compiling wasm on every startup)

* add HostFunctions to ChainSpec

* add common migration MigrateToLatestXcmVersion

* add runtime-2900 feature to moonbeam-rpc-primitives-debug

* update benchmarks
  • Loading branch information
RomarQ authored Mar 26, 2024
1 parent 7f77c13 commit e70ee0d
Show file tree
Hide file tree
Showing 287 changed files with 8,988 additions and 8,848 deletions.
2 changes: 1 addition & 1 deletion .github/workflow-templates/cargo-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
shell: bash
run: |
mkdir -p mold
curl -L --retry 10 --silent --show-error https://github.com/rui314/mold/releases/download/v1.1.1/mold-1.1.1-$(uname -m)-linux.tar.gz | tar -C $(realpath mold) --strip-components=1 -xzf -
curl -L --retry 10 --silent --show-error https://github.com/rui314/mold/releases/download/v2.30.0/mold-2.30.0-$(uname -m)-linux.tar.gz | tar -C $(realpath mold) --strip-components=1 -xzf -
# With rustup's nice new toml format, we just need to run rustup show to install the toolchain
# https://github.com/actions-rs/toolchain/issues/126#issuecomment-782989659
- name: Setup Rust toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ jobs:
shell: bash
run: |
mkdir -p mold
curl -L --retry 10 --silent --show-error https://github.com/rui314/mold/releases/download/v1.1.1/mold-1.1.1-$(uname -m)-linux.tar.gz | tar -C $(realpath mold) --strip-components=1 -xzf -
curl -L --retry 10 --silent --show-error https://github.com/rui314/mold/releases/download/v2.30.0/mold-2.30.0-$(uname -m)-linux.tar.gz | tar -C $(realpath mold) --strip-components=1 -xzf -
# With rustup's nice new toml format, we just need to run rustup show to install the toolchain
# https://github.com/actions-rs/toolchain/issues/126#issuecomment-782989659
- name: Setup Rust toolchain
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ on:
workflow_dispatch:
inputs:
from:
description: "Polkadot version to bump from (ex: v0.9.40)"
description: "Polkadot version to bump from (ex: v1.3.0)"
required: true
to:
description: "Polkadot version to bump to (ex: v0.9.42)"
description: "Polkadot version to bump to (ex: v1.7.2)"
required: true

jobs:
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Create version bump issue
uses: peter-evans/create-issue-from-file@v3
with:
title: Update substrate/polkadot/cumulus from ${{ github.event.inputs.from }} to ${{ github.event.inputs.to }}
title: Update polkadot-sdk from ${{ github.event.inputs.from }} to ${{ github.event.inputs.to }}
content-filepath: ./version-bump.md
labels: |
automated issue
Loading

0 comments on commit e70ee0d

Please sign in to comment.