Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade 0932 #966

Merged
merged 25 commits into from
May 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
66d0c35
Download external dependencies to external directory
vivekvpandya Feb 3, 2023
04afbe6
Use all polkadot related dependencies from paritytech github.
vivekvpandya Feb 7, 2023
88ab0b6
clippy + fmt
vivekvpandya Feb 7, 2023
6223fb6
Add migrations for parity pallets
vivekvpandya Feb 8, 2023
6cd0a01
Set proof_size in MAXIMUM_BLOCK_WEIGHT to avoid test failures
vivekvpandya Feb 8, 2023
df57c61
Update weights
vivekvpandya Feb 8, 2023
7f90a9a
Remove commented code which is not required
vivekvpandya Feb 8, 2023
d74e5b1
Minor fix
vivekvpandya Feb 9, 2023
7d4f526
Fix WeightInfo usage
vivekvpandya Feb 9, 2023
599dd57
Format
vivekvpandya Feb 9, 2023
648a761
Fix migration for pallet scheduler
vivekvpandya Feb 10, 2023
1920fc4
Upgrade log crate version
vivekvpandya Feb 10, 2023
39be367
Fix CI issue
vivekvpandya Feb 10, 2023
ef859b6
Fix fuzz test
vivekvpandya Feb 10, 2023
574029a
Move code from external directory to separate repo on github.com
vivekvpandya Feb 21, 2023
97dee8f
Merge branch 'main' into upgrade_0932
sea212 May 4, 2023
01e9591
Fix dependencies
sea212 May 4, 2023
f075c70
Add missing feature to polkadot-cli
sea212 May 22, 2023
90ba1f9
Merge branch 'main' into upgrade_0932
sea212 May 22, 2023
fd0b51a
Use proper origins and traits
sea212 May 22, 2023
db88e31
Apply most recent migration code
sea212 May 23, 2023
2c18a7c
Cargo fmt
sea212 May 23, 2023
752aee9
Use new state transfer scheme in try-runtime
sea212 May 23, 2023
6f82f9a
Respect new XCM fee on Rococo & Polkadot
sea212 May 25, 2023
ac43b82
Merge branch 'main' into upgrade_0932
sea212 May 26, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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