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

Init System Parachain storage versions and add migration check jobs to CI #1344

Merged
merged 46 commits into from
Oct 2, 2023
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
65e5720
add jobs for polkadot and kusama
liamaharon Aug 31, 2023
b20dea3
add polkadot and kusama jobs
liamaharon Aug 31, 2023
136b150
pin to tag
liamaharon Aug 31, 2023
663b2a8
dag
liamaharon Aug 31, 2023
2bff174
debug logs
liamaharon Sep 1, 2023
ffecc69
debug: only run kusama
liamaharon Sep 1, 2023
0ce9882
debug: only kusama
liamaharon Sep 1, 2023
5826d24
staging-kusama
liamaharon Sep 1, 2023
74d2e32
network package wasm variables
liamaharon Sep 1, 2023
f4f4843
fix package name
liamaharon Sep 1, 2023
6af3482
enable for all chains
liamaharon Sep 1, 2023
4547517
fix typo
liamaharon Sep 1, 2023
8f03362
fix uniques storage version
liamaharon Sep 1, 2023
7000648
Merge branch 'master' into liam/ci-polkadot-kusama-runtime-migration
liamaharon Sep 2, 2023
b9a3da8
Merge branch 'master' into liam/ci-polkadot-kusama-runtime-migration
liamaharon Sep 14, 2023
52a9955
init sp storage versions
liamaharon Sep 14, 2023
e1ea5db
add extra args
liamaharon Sep 14, 2023
f2323ba
remove redundant check
liamaharon Sep 14, 2023
f797e33
remove dag
liamaharon Sep 14, 2023
73d94c0
remove redundant check
liamaharon Sep 14, 2023
8d1c121
run missing migration
liamaharon Sep 14, 2023
f546958
fix migration
liamaharon Sep 14, 2023
93980b7
fix multisig migration
liamaharon Sep 14, 2023
d2126d3
fix reads
liamaharon Sep 14, 2023
874eb13
kick ci
liamaharon Sep 14, 2023
d6feb43
kick ci
liamaharon Sep 14, 2023
e865aff
remove unused vars
liamaharon Sep 14, 2023
b199330
fix fellowship referenda version
liamaharon Sep 14, 2023
898b12c
Merge branch 'master' into liam/ci-polkadot-kusama-runtime-migration
liamaharon Sep 14, 2023
e0facd5
Merge branch 'liam/ci-polkadot-kusama-runtime-migration' of github.co…
liamaharon Sep 14, 2023
b6bb996
Merge branch 'master' into liam/ci-polkadot-kusama-runtime-migration
liamaharon Sep 14, 2023
43a13c3
remove executed migration
liamaharon Sep 14, 2023
9bf5394
Merge branch 'liam/ci-polkadot-kusama-runtime-migration' of github.co…
liamaharon Sep 14, 2023
715642d
Merge branch 'master' of github.com:paritytech/polkadot-sdk into liam…
liamaharon Sep 22, 2023
5c5b3e4
reset changes to fellowship runtimes
liamaharon Sep 22, 2023
e2fc388
fix multisig migration return weight
liamaharon Sep 22, 2023
c659135
reset cancel pipelines
liamaharon Sep 22, 2023
3dc6b44
remove checks for fellowship runtimes
liamaharon Sep 22, 2023
ee12159
remove redundant comment
liamaharon Sep 22, 2023
08c85f1
use compact compressed wasm
liamaharon Sep 25, 2023
51a731e
set current storage versoin
liamaharon Sep 25, 2023
25db974
fix --runtime path
liamaharon Sep 25, 2023
33d181d
Merge branch 'master' into liam/ci-polkadot-kusama-runtime-migration
liamaharon Sep 25, 2023
0f3a8ba
Merge branch 'master' into liam/ci-polkadot-kusama-runtime-migration
liamaharon Sep 26, 2023
f2ac8ce
Merge branch 'master' into liam/ci-polkadot-kusama-runtime-migration
liamaharon Sep 29, 2023
1edd597
Merge branch 'master' into liam/ci-polkadot-kusama-runtime-migration
liamaharon Sep 30, 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
Prev Previous commit
Next Next commit
add extra args
  • Loading branch information
liamaharon committed Sep 14, 2023
commit e1ea5db9485570010bcb64e45dc6f1420b7a1531
6 changes: 5 additions & 1 deletion .gitlab/pipeline/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ test-rust-feature-propagation:
echo "---------- Executing `on-runtime-upgrade` for ${NETWORK} ----------"
time try-runtime \
--runtime ./target/release/wbuild/"$PACKAGE"/target/wasm32-unknown-unknown/release/"$WASM" \
on-runtime-upgrade --checks=pre-and-post live --uri ${URI}
on-runtime-upgrade --checks=pre-and-post ${EXTRA_ARGS} live --uri ${URI}

# Check runtime migrations for relay chains
check-runtime-migration-polkadot:
Expand All @@ -138,6 +138,7 @@ check-runtime-migration-polkadot:
PACKAGE: "polkadot-runtime"
WASM: "polkadot_runtime.wasm"
URI: "wss://polkadot-try-runtime-node.parity-chains.parity.io:443"
EXTRA_ARGS: "--no-weight-warnings"

check-runtime-migration-kusama:
stage: check
Expand All @@ -154,6 +155,7 @@ check-runtime-migration-kusama:
PACKAGE: "staging-kusama-runtime"
WASM: "staging_kusama_runtime.wasm"
URI: "wss://kusama-try-runtime-node.parity-chains.parity.io:443"
EXTRA_ARGS: "--no-weight-warnings"

check-runtime-migration-westend:
stage: check
Expand All @@ -166,6 +168,7 @@ check-runtime-migration-westend:
PACKAGE: "westend-runtime"
WASM: "westend_runtime.wasm"
URI: "wss://westend-try-runtime-node.parity-chains.parity.io:443"
EXTRA_ARGS: "--no-weight-warnings"

check-runtime-migration-rococo:
stage: check
Expand All @@ -182,6 +185,7 @@ check-runtime-migration-rococo:
PACKAGE: "rococo-runtime"
WASM: "rococo_runtime.wasm"
URI: "wss://rococo-try-runtime-node.parity-chains.parity.io:443"
EXTRA_ARGS: "--no-weight-warnings"

# Check runtime migrations for asset hub chains
check-runtime-migration-asset-hub-polkadot:
Expand Down