Skip to content

Commit 22a2d54

Browse files
Merge pull request #671 from Cerebellum-Network/upgrade-2506
Upgrade to Polkadot-Stable2506
2 parents 4424c13 + 9f6cc13 commit 22a2d54

File tree

48 files changed

+3224
-2609
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+3224
-2609
lines changed

.github/workflows/ci.yaml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Install toolchain and rust-src
4545
uses: actions-rs/toolchain@v1
4646
with:
47-
toolchain: 1.82.0
47+
toolchain: 1.90.0
4848
override: true
4949
target: wasm32-unknown-unknown
5050
components: rust-src
@@ -82,7 +82,7 @@ jobs:
8282
- name: Install toolchain
8383
uses: actions-rs/toolchain@v1
8484
with:
85-
toolchain: 1.82.0
85+
toolchain: 1.90.0
8686
override: true
8787
target: wasm32-unknown-unknown
8888
components: rust-src
@@ -101,29 +101,34 @@ jobs:
101101
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
102102
- uses: actions/checkout@v3
103103
- name: Install linux dependencies
104-
run: sudo apt update && sudo apt install -y cargo clang libssl-dev llvm libudev-dev protobuf-compiler make
104+
run: sudo apt update && sudo apt install -y cargo clang libssl-dev llvm libudev-dev protobuf-compiler make pkg-config
105105
- name: Install Rust and Use It
106106
shell: bash
107107
run: |
108108
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
109109
. "$HOME/.cargo/env"
110-
rustup toolchain install 1.82.0
111-
rustup default 1.82.0
110+
rustup toolchain install 1.90.0
111+
rustup default 1.90.0
112112
rustup show
113113
- name: Install toolchain
114114
uses: actions-rs/toolchain@v1
115115
with:
116-
toolchain: 1.82.0
116+
toolchain: 1.90.0
117117
override: true
118118
target: wasm32-unknown-unknown
119119
components: rust-src
120120
- name: Rust Cache
121121
uses: Swatinem/rust-cache@v2
122+
- name: Install cargo-tarpaulin
123+
shell: bash
124+
run: |
125+
. "$HOME/.cargo/env"
126+
cargo install cargo-tarpaulin --locked
122127
- name: Run cargo-tarpaulin
123-
uses: actions-rs/tarpaulin@v0.1
124-
with:
125-
version: '0.22.0'
126-
args: '--verbose --locked --no-fail-fast --workspace --features runtime-benchmarks --out "Xml" -- --skip mock_clusters_gov::__construct_runtime_integrity_test::runtime_integrity_tests'
128+
shell: bash
129+
run: |
130+
. "$HOME/.cargo/env"
131+
cargo tarpaulin --verbose --locked --no-fail-fast --workspace --features runtime-benchmarks --out Xml -- --skip mock_clusters_gov::__construct_runtime_integrity_test::runtime_integrity_tests
127132
- name: Upload coverage report
128133
uses: actions/upload-artifact@v4
129134
with:

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## Legend
99

1010
- [C] Changes is `Cere` Runtime
11-
- [D] Changes is `Cere Dev` Runtime
11+
- [D] Changes is `Cere Dev`
12+
13+
## [7.3.13]
14+
15+
- [C,D] Update Substrate from `stable2503` to `stable2506`.
1216

1317
## [7.3.12]
1418

0 commit comments

Comments
 (0)