Skip to content

Commit f7119e4

Browse files
authored
Remove check-migrations for rococo chain (#6061)
This PR removes the `check-migrations` pipelines for all Rococo chains because they are going down: paritytech/devops#3589, and these checks are starting to fail, e.g.: https://github.com/paritytech/polkadot-sdk/actions/runs/11339904745/job/31535485254?pr=4982 https://github.com/paritytech/polkadot-sdk/actions/runs/11339904745/job/31535486189?pr=4982 https://github.com/paritytech/polkadot-sdk/actions/runs/11339904745/job/31535486471?pr=4982 Additionally, `coretime-westend` was added to the `check-migrations` matrix.
1 parent 6f03f7a commit f7119e4

File tree

3 files changed

+22
-37
lines changed

3 files changed

+22
-37
lines changed

.github/workflows/check-runtime-migration.yml

+11-37
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,10 @@ jobs:
3636
network:
3737
[
3838
westend,
39-
rococo,
4039
asset-hub-westend,
41-
asset-hub-rococo,
4240
bridge-hub-westend,
43-
bridge-hub-rococo,
44-
contracts-rococo,
4541
collectives-westend,
46-
coretime-rococo,
42+
coretime-westend,
4743
]
4844
include:
4945
- network: westend
@@ -52,49 +48,27 @@ jobs:
5248
uri: "wss://try-runtime-westend.polkadot.io:443"
5349
subcommand_extra_args: "--no-weight-warnings --blocktime 6000"
5450
command_extra_args: ""
55-
- network: rococo
56-
package: rococo-runtime
57-
wasm: rococo_runtime.compact.compressed.wasm
58-
uri: "wss://try-runtime-rococo.polkadot.io:443"
59-
subcommand_extra_args: "--no-weight-warnings --blocktime 6000"
60-
command_extra_args: ""
6151
- network: asset-hub-westend
6252
package: asset-hub-westend-runtime
6353
wasm: asset_hub_westend_runtime.compact.compressed.wasm
6454
uri: "wss://westend-asset-hub-rpc.polkadot.io:443"
6555
subcommand_extra_args: " --blocktime 6000"
6656
command_extra_args: ""
67-
- network: "asset-hub-rococo"
68-
package: "asset-hub-rococo-runtime"
69-
wasm: "asset_hub_rococo_runtime.compact.compressed.wasm"
70-
uri: "wss://rococo-asset-hub-rpc.polkadot.io:443"
71-
subcommand_extra_args: " --blocktime 6000"
72-
command_extra_args: ""
73-
- network: "bridge-hub-westend"
74-
package: "bridge-hub-westend-runtime"
75-
wasm: "bridge_hub_westend_runtime.compact.compressed.wasm"
57+
- network: bridge-hub-westend
58+
package: bridge-hub-westend-runtime
59+
wasm: bridge_hub_westend_runtime.compact.compressed.wasm
7660
uri: "wss://westend-bridge-hub-rpc.polkadot.io:443"
7761
subcommand_extra_args: " --blocktime 6000"
78-
- network: "bridge-hub-rococo"
79-
package: "bridge-hub-rococo-runtime"
80-
wasm: "bridge_hub_rococo_runtime.compact.compressed.wasm"
81-
uri: "wss://rococo-bridge-hub-rpc.polkadot.io:443"
82-
subcommand_extra_args: " --blocktime 6000"
83-
- network: "contracts-rococo"
84-
package: "contracts-rococo-runtime"
85-
wasm: "contracts_rococo_runtime.compact.compressed.wasm"
86-
uri: "wss://rococo-contracts-rpc.polkadot.io:443"
87-
subcommand_extra_args: " --blocktime 6000"
88-
- network: "collectives-westend"
89-
package: "collectives-westend-runtime"
90-
wasm: "collectives_westend_runtime.compact.compressed.wasm"
62+
- network: collectives-westend
63+
package: collectives-westend-runtime
64+
wasm: collectives_westend_runtime.compact.compressed.wasm
9165
uri: "wss://westend-collectives-rpc.polkadot.io:443"
9266
command_extra_args: "--disable-spec-name-check"
9367
subcommand_extra_args: " --blocktime 6000"
94-
- network: "coretime-rococo"
95-
package: "coretime-rococo-runtime"
96-
wasm: "coretime_rococo_runtime.compact.compressed.wasm"
97-
uri: "wss://rococo-coretime-rpc.polkadot.io:443"
68+
- network: coretime-westend
69+
package: coretime-westend-runtime
70+
wasm: coretime_westend_runtime.compact.compressed.wasm
71+
uri: "wss://westend-coretime-rpc.polkadot.io:443"
9872
subcommand_extra_args: " --blocktime 6000"
9973
steps:
10074
- name: Checkout

cumulus/parachains/runtimes/coretime/coretime-westend/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ pub type UncheckedExtrinsic =
120120
pub type Migrations = (
121121
pallet_collator_selection::migration::v2::MigrationToV2<Runtime>,
122122
cumulus_pallet_xcmp_queue::migration::v4::MigrationToV4<Runtime>,
123+
cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5<Runtime>,
123124
pallet_broker::migration::MigrateV0ToV1<Runtime>,
124125
pallet_broker::migration::MigrateV1ToV2<Runtime>,
125126
pallet_broker::migration::MigrateV2ToV3<Runtime>,

prdoc/pr_6061.prdoc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
title: Remove check-migrations for rococo chain
2+
3+
doc:
4+
- audience: [Runtime User]
5+
description: |
6+
This PR adds the missing `cumulus_pallet_xcmp_queue` v5 migration to the coretime-westend runtime.
7+
8+
crates:
9+
- name: coretime-westend-runtime
10+
bump: none

0 commit comments

Comments
 (0)