Skip to content

Commit 85f77d5

Browse files
Merge pull request #549 from Cerebellum-Network/release/7.3.3
changes to fix CI
2 parents 54f454d + e6b8edb commit 85f77d5

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,14 @@ jobs:
102102
- uses: actions/checkout@v3
103103
- name: Install linux dependencies
104104
run: sudo apt update && sudo apt install -y cargo clang libssl-dev llvm libudev-dev protobuf-compiler make
105+
- name: Install Rust and Use It
106+
shell: bash
107+
run: |
108+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
109+
. "$HOME/.cargo/env"
110+
rustup toolchain install 1.81.0
111+
rustup default 1.81.0
112+
rustup show
105113
- name: Install toolchain
106114
uses: actions-rs/toolchain@v1
107115
with:

runtime/cere-dev/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
163163
// and set impl_version to 0. If only runtime
164164
// implementation changes and behavior does not, then leave spec_version as
165165
// is and increment impl_version.
166-
spec_version: 73102,
166+
spec_version: 73103,
167167
impl_version: 0,
168168
apis: RUNTIME_API_VERSIONS,
169169
transaction_version: 24,

runtime/cere/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
158158
// and set impl_version to 0. If only runtime
159159
// implementation changes and behavior does not, then leave spec_version as
160160
// is and increment impl_version.
161-
spec_version: 73102,
161+
spec_version: 73103,
162162
impl_version: 0,
163163
apis: RUNTIME_API_VERSIONS,
164164
transaction_version: 24,

0 commit comments

Comments
 (0)