Skip to content

Commit

Permalink
Bump toolchain version
Browse files Browse the repository at this point in the history
  • Loading branch information
albertandrejev committed Dec 18, 2024
1 parent 34c7b4c commit 529058a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
components: clippy
profile: minimal
override: true
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
components: rustfmt
profile: minimal
override: true
Expand All @@ -81,7 +81,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
profile: minimal
- run: cargo fetch --verbose
- run: cargo build
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
profile: minimal
override: true
- run: make compile
Expand Down
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,15 @@ compile:
--mount type=volume,source="$(notdir $(CURDIR))_cache",target=/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
--platform linux/amd64 \
cosmwasm/workspace-optimizer:0.15.1
cosmwasm/optimizer:0.16.1
@sudo chown -R $(shell id -u):$(shell id -g) artifacts

compile_arm64:
@docker run --rm -v "$(CURDIR)":/code \
--mount type=volume,source="$(notdir $(CURDIR))_cache",target=/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
--platform linux/arm64 \
cosmwasm/workspace-optimizer-arm64:0.15.1
@cd artifacts && for file in *-aarch64.wasm; do cp -f "$$file" "$${file%-aarch64.wasm}.wasm"; done
cosmwasm/optimizer-arm64:0.16.1

check_contracts:
@cargo install cosmwasm-check --locked
Expand Down
8 changes: 4 additions & 4 deletions integration_tests/src/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
components: clippy
profile: minimal
override: true
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
components: rustfmt
profile: minimal
override: true
Expand All @@ -103,7 +103,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
profile: minimal
- run: cargo fetch --verbose
- run: cargo build
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
fetch-depth: 1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
toolchain: 1.81.0
profile: minimal
override: true
- run: make compile
Expand Down
1 change: 1 addition & 0 deletions packages/proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ crate-type = ["cdylib", "rlib"]
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []
grpc = []

[dependencies]
prost = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/proto/src/liquidstaking.distribution.v1beta1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub struct Params {
/// number of outstanding delegations which ended the associated period (and
/// might need to read that record)
/// + number of slashes which ended the associated period (and might need to
/// read that record)
/// read that record)
/// + one per validator for the zeroeth period, set on initialization
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.75.0"
channel = "1.81.0"

0 comments on commit 529058a

Please sign in to comment.