-
Notifications
You must be signed in to change notification settings - Fork 378
Upgrade polkadot-sdk to version 1.7.2 #2700
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
Merged
Merged
Changes from 58 commits
Commits
Show all changes
83 commits
Select commit
Hold shift + click to select a range
050af7e
Use polkadot-sdk to version 1.7.2
RomarQ 3e2a418
fix test compilation
RomarQ cf063dd
Fix runtime API
RomarQ 4693b73
fix runtime-benchmarks for pallet-identity
RomarQ 48ee91e
fix identity precompile
RomarQ 677fe97
format code
RomarQ cefa404
fix rust tests
RomarQ 0e2995d
fix license check
RomarQ fd4cc41
fix format
RomarQ f8469eb
chore(ci): explicitly set rust toolchain before running the jobs
RomarQ 0a57a6b
chore(ci): add rust-src component
RomarQ eec0501
chore(ci): fix rust-toolchain component installation
RomarQ 90bd671
chore(ci): remove deprectated actions-rs/toolchain action
RomarQ de0fcf5
chore(ci): try to fix CI
RomarQ d50f207
chore(ci): try to fix CI
RomarQ 52787b1
chore(ci): try to fix CI
RomarQ 504b560
chore(ci): try to fix CI
RomarQ 11ee0f0
disable crate default-features
RomarQ 20bd522
fix tests
RomarQ e1269b0
fix try-runtime
RomarQ 40b48c5
update crowdloan-rewards crate
RomarQ b802da9
revert Xtokens.sol change
RomarQ b039d4d
remove TODO's
RomarQ 08a3303
chore update typescript test
RomarQ 7541a7e
Merge branch 'master' into rq/update-polkadot-v1.7.2
RomarQ 111eef2
replace NativeElseWasmExecutor with WasmExecutor to fix runtime overr…
RomarQ b60e8f1
rename trait
RomarQ 7e56168
fix benchmarks
RomarQ de96dab
attempt to fix tracing-tests
RomarQ d8e66f4
revert change
RomarQ 2e5a24e
set delayed_best_block to true in ParachainBlockImport
RomarQ ec2dbda
initialize block inside tracing method in the runtime api
RomarQ 4901b7e
fix formatting in typescript tests
RomarQ fa5cd63
try new runtime-overrides
RomarQ 116b473
fix some xcm tests tests
RomarQ 8598662
fix tracing tests
RomarQ 938ea52
fix formatting
RomarQ 18080a1
fix rust tests
RomarQ d0d4e36
Revert "try new runtime-overrides"
RomarQ bd49b4e
keep using xcm v3 in some places to avoid having many breaking changes
RomarQ c31a6b8
fix benchmarks
RomarQ 72c9578
fix tracing tests
RomarQ 541c416
fix typescript tests
RomarQ d19e6ce
revert removal of RewardDestination::Controller
RomarQ 2615ca5
fix tests in test-proxy
RomarQ 5f5d08b
fix tests in test-precompile-wormhole.ts
RomarQ 46a9db2
fix test-pov tests
RomarQ bdc8482
fix dmp queue tests
RomarQ 472bf9f
fix fee tests and add xcm v4 tests
RomarQ 6e2c17e
add xcm v4 tests
RomarQ b15a5c2
fix fmt
RomarQ 31ead3d
update moonkit dependency branch
RomarQ ba61606
add new type parameter to pallet async-backing config
RomarQ 915b9ef
fix coverage job
RomarQ d3afb94
update github jobs
RomarQ 74711dc
derive new test id's
RomarQ b93ea02
update rustc to version 1.75
RomarQ 5b90e07
Revert "update rustc to version 1.75"
RomarQ 8064258
update Cargo.lock
RomarQ 1a3aea5
revert changes to .gihub folder
RomarQ 52bea1f
fix formatting
RomarQ aee9b69
removed unused script
RomarQ b3a4287
try disabling coverage
RomarQ 9b0962d
Revert "try disabling coverage"
RomarQ 1397d9c
update mold linker
RomarQ d5b049b
use default linker
RomarQ 9de0703
Revert "use default linker"
RomarQ f5d2287
fix leaked dependencies
RomarQ a850bc8
apply suggestions from reviews
RomarQ e389a70
Revert "Revert "use default linker""
RomarQ 4301aff
Revert "Revert "Revert "use default linker"""
RomarQ c7c7a37
increase timeout for coverage job
RomarQ 6dff7e7
Merge branch 'master' into rq/update-polkadot-v1.7.2
RomarQ e93eb9f
use pre-generated chain spec in dev-tests (avoid compiling wasm on ev…
RomarQ 944e8ff
Merge branch 'master' into rq/update-polkadot-v1.7.2
RomarQ 83c5ca2
fix line lint
RomarQ fde57bb
fix tests
RomarQ 918aab5
Revert "increase timeout for coverage job"
RomarQ fccb45f
add HostFunctions to ChainSpec
RomarQ 4936313
add common migration MigrateToLatestXcmVersion
RomarQ d97ffc8
fix migration
RomarQ a04afba
add runtime-2900 feature to moonbeam-rpc-primitives-debug
RomarQ 3b40b35
update benchmarks
RomarQ File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,19 @@ | ||
| name: Rust Toolchain | ||
| description: Install Rust toolchain | ||
|
|
||
| runs: | ||
| using: "composite" | ||
| steps: | ||
| - name: Install Rust toolchain | ||
| uses: actions-rs/toolchain@v1 | ||
| with: | ||
| toolchain: 1.74.0 | ||
| override: true | ||
| components: rust-src, rustfmt, clippy | ||
| - name: Install targets | ||
| shell: bash | ||
| run: | | ||
| rustup target add wasm32-unknown-unknown | ||
| - name: Shows the name of the active toolchain and the version of `rustc` | ||
| shell: bash | ||
| run: rustup show |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.