Skip to content

Commit

Permalink
Post v0.31.0 alignment (#631)
Browse files Browse the repository at this point in the history
- CI: Fix production release workflow (#622)
- disable crowdloan migration
- Revert "temporary disable try-runtime for rococo"
  • Loading branch information
majusko authored Oct 24, 2023
2 parents 50fe2be + 97498fe commit b051142
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/reusable-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,8 @@ jobs:
~/.cache/sccache
key: cargo-try-runtime-${{ inputs.cache_version }}-${{ hashFiles('Cargo.lock') }}

# NOTE: Rococo has been already upgraded so lets disable rococo try-runtime
# - name: Run try-runtime Rococo testnet
# run: cargo run --release --features=try-runtime,mangata-rococo try-runtime --chain=rococo --runtime=target/release/wbuild/mangata-rococo-runtime/mangata_rococo_runtime.wasm on-runtime-upgrade live --uri wss://collator-01-ws-rococo.mangata.online:443
- name: Run try-runtime Rococo testnet
run: cargo run --release --features=try-runtime,mangata-rococo try-runtime --chain=rococo --runtime=target/release/wbuild/mangata-rococo-runtime/mangata_rococo_runtime.wasm on-runtime-upgrade live --uri wss://collator-01-ws-rococo.mangata.online:443

- name: Run try-runtime Kusama Mainnet
run: cargo run --release --features=try-runtime try-runtime --chain=kusama --runtime=target/release/wbuild/mangata-kusama-runtime/mangata_kusama_runtime.wasm on-runtime-upgrade live --uri wss://kusama-rpc.mangata.online:443
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions runtime/mangata-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("mangata-parachain"),
impl_name: create_runtime_str!("mangata-parachain"),
authoring_version: 15,
spec_version: 003100,
spec_version: 003200,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 003100,
transaction_version: 003200,
state_version: 0,
};

Expand Down
4 changes: 2 additions & 2 deletions runtime/mangata-rococo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
impl_name: create_runtime_str!("mangata-parachain"),

authoring_version: 14,
spec_version: 003100,
spec_version: 003200,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 003100,
transaction_version: 003200,
state_version: 0,
};

Expand Down

0 comments on commit b051142

Please sign in to comment.