Skip to content

Commit 0b0e170

Browse files
committed
Compile hackatom with newer Rust
1 parent 7470656 commit 0b0e170

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.circleci/config.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,8 @@ jobs:
731731

732732
contract_hackatom:
733733
docker:
734-
- image: rust:1.81
734+
# We compile this contract with the upper bound to detect issues with new Rust versions early
735+
- image: rust:1.84.1
735736
environment:
736737
RUST_BACKTRACE: 1
737738
working_directory: ~/cosmwasm/contracts/hackatom
@@ -743,9 +744,9 @@ jobs:
743744
command: rustc --version; cargo --version; rustup --version
744745
- restore_cache:
745746
keys:
746-
- cargocache-v2-contract_hackatom-rust:1.81-{{ checksum "Cargo.lock" }}
747+
- cargocache-v2-contract_hackatom-rust:1.84.1-{{ checksum "Cargo.lock" }}
747748
- check_contract:
748-
min_version: "2.2"
749+
min_version: "3.0"
749750
- save_cache:
750751
paths:
751752
- /usr/local/cargo/registry
@@ -755,7 +756,7 @@ jobs:
755756
- target/wasm32-unknown-unknown/release/.fingerprint
756757
- target/wasm32-unknown-unknown/release/build
757758
- target/wasm32-unknown-unknown/release/deps
758-
key: cargocache-v2-contract_hackatom-rust:1.81-{{ checksum "Cargo.lock" }}
759+
key: cargocache-v2-contract_hackatom-rust:1.84.1-{{ checksum "Cargo.lock" }}
759760

760761
contract_ibc_callbacks:
761762
docker:

0 commit comments

Comments
 (0)