diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 776ae796f..b3c5a9b39 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -49,9 +49,15 @@ jobs: target: wasm32-unknown-unknown - name: Rust Cache uses: Swatinem/rust-cache@v2 + - name: Install try-runtime + run: cargo install --git https://github.com/paritytech/try-runtime-cli --locked - name: Check Build run: | - cargo build --release + cargo build --release --features try-runtime + - name: Check Try-Runtime + run: | + try-runtime --runtime ./target/release/wbuild/cere-dev-runtime/cere_dev_runtime.compact.compressed.wasm \ + on-runtime-upgrade --disable-idempotency-checks live --uri wss://rpc.devnet.cere.network:443 - name: Run dev chain run: | timeout --preserve-status 30s ./target/release/cere --dev @@ -59,9 +65,6 @@ jobs: run: > pushd node && cargo check --features=runtime-benchmarks --release - - name: Check Build for Try-Runtime - run: | - cargo check --features=try-runtime --release clippy: name: Run Clippy diff --git a/runtime/cere-dev/src/lib.rs b/runtime/cere-dev/src/lib.rs index 63b89e9c5..136b166eb 100644 --- a/runtime/cere-dev/src/lib.rs +++ b/runtime/cere-dev/src/lib.rs @@ -143,7 +143,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // and set impl_version to 0. If only runtime // implementation changes and behavior does not, then leave spec_version as // is and increment impl_version. - spec_version: 54000, + spec_version: 54001, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 18, diff --git a/runtime/cere/src/lib.rs b/runtime/cere/src/lib.rs index 0288b8ba9..1cf06eba3 100644 --- a/runtime/cere/src/lib.rs +++ b/runtime/cere/src/lib.rs @@ -137,7 +137,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // and set impl_version to 0. If only runtime // implementation changes and behavior does not, then leave spec_version as // is and increment impl_version. - spec_version: 54000, + spec_version: 54001, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 18,