Skip to content

Commit

Permalink
Upgrade 0932 (#966)
Browse files Browse the repository at this point in the history
* Download external dependencies to external directory

* Use all polkadot related dependencies from paritytech github.
Make things compile with polkadot v0.9.32.
Please note that certain things are just commneted out and will be fixed/improved in upcoming commits.

* Add migrations for parity pallets

* Set proof_size in MAXIMUM_BLOCK_WEIGHT to avoid test failures

* Update weights

* Remove commented code which is not required

* Upgrade log crate version

* Move code from external directory to separate repo on github.com

* Fix dependencies

* Add missing feature to polkadot-cli

* Use proper origins and traits

* Apply most recent migration code

* Use new state transfer scheme in try-runtime

* Respect new XCM fee on Rococo & Polkadot

---------

Co-authored-by: Harald Heckmann <mail@haraldheckmann.de>
  • Loading branch information
vivekvpandya and sea212 authored May 26, 2023
1 parent 033b6a3 commit 24ab42e
Show file tree
Hide file tree
Showing 120 changed files with 3,133 additions and 2,987 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
run:
shell: bash
steps:
- name: Install ProtoBuf Compiler
run: |
sudo apt-get install protobuf-compiler
# Ensure that at most one benchmark worklow runs across all workflows
- name: Turnstyle
uses: softprops/turnstyle@v1
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/migration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
name: Test migration
runs-on: ubuntu-latest
steps:
- name: Install ProtoBuf Compiler
run: |
sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v2

Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
name: Format
runs-on: ubuntu-latest
steps:
- name: Install ProtoBuf Compiler
run: |
sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v2

Expand Down Expand Up @@ -45,6 +48,9 @@ jobs:
"standalone"
]
steps:
- name: Install ProtoBuf Compiler
run: |
sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v2

Expand All @@ -60,6 +66,9 @@ jobs:
name: Quick check benchmarks
runs-on: ubuntu-latest
steps:
- name: Install ProtoBuf Compiler
run: |
sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v2

Expand All @@ -72,6 +81,9 @@ jobs:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Install ProtoBuf Compiler
run: |
sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v2

Expand Down Expand Up @@ -103,6 +115,9 @@ jobs:
name: Fuzz
runs-on: ubuntu-latest
steps:
- name: Install ProtoBuf Compiler
run: |
sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v2

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
name: Test Try Runtime
runs-on: ubuntu-latest
steps:
- name: Install ProtoBuf Compiler
run: |
sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v3

Expand All @@ -27,6 +30,9 @@ jobs:
name: Test Try Runtime
runs-on: ubuntu-latest
steps:
- name: Install ProtoBuf Compiler
run: |
sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v3

Expand Down
Loading

0 comments on commit 24ab42e

Please sign in to comment.