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

Feat: Polkadot v1.6 to v1.7 upgrade #441

Draft
wants to merge 8 commits into
base: feat/polkadot-v1.6.0-upgrade
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 6 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,17 @@ jobs:
- uses: actions/checkout@v3
- name: Install linux dependencies
run: sudo apt update && sudo apt install -y cargo clang libssl-dev llvm libudev-dev protobuf-compiler
- name: Install toolchain
- name: Install toolchain and rust-src
uses: actions-rs/toolchain@v1
with:
toolchain: 1.77.0
override: true
target: wasm32-unknown-unknown
components: rust-src
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install try-runtime
run: cargo install --git https://github.com/paritytech/try-runtime-cli --locked
run: cargo install --git https://github.com/paritytech/try-runtime-cli --tag v0.7.0 --locked
- name: Check Build
run: |
cargo build --release --features try-runtime
Expand Down Expand Up @@ -80,7 +81,7 @@ jobs:
toolchain: 1.77.0
override: true
target: wasm32-unknown-unknown
components: clippy
components: rust-src
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Check with Clippy
Expand All @@ -103,6 +104,7 @@ jobs:
toolchain: 1.77.0
override: true
target: wasm32-unknown-unknown
components: rust-src
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Run cargo-tarpaulin
Expand All @@ -114,4 +116,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: tarpaulin coverage
path: ./tarpaulin-report.xml
path: ./tarpaulin-report.xml
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [C] Changes is `Cere` Runtime
- [D] Changes is `Cere Dev` Runtime

## [5.9.0]

- [C,D] Update Substrate from `v1.6` to `v1.7`.

## [5.8.0]

- [C,D] Update Substrate from `v1.5` to `v1.6`.
Expand Down
Loading
Loading