Skip to content

Commit ee18ff5

Browse files
committed
Use upper Rust version to compile hackatom
1 parent 38a5f34 commit ee18ff5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,8 @@ jobs:
652652

653653
contract_hackatom:
654654
docker:
655-
- image: rust:1.74
655+
# We compile this contract with the upper bound to detect issues with new Rust versions early
656+
- image: rust:1.82
656657
environment:
657658
RUST_BACKTRACE: 1
658659
working_directory: ~/cosmwasm/contracts/hackatom
@@ -664,7 +665,8 @@ jobs:
664665
command: rustc --version; cargo --version; rustup --version
665666
- restore_cache:
666667
keys:
667-
- cargocache-v2-contract_hackatom-rust:1.74-{{ checksum "Cargo.lock" }}
668+
- cargocache-v2-contract_hackatom-rust:1.82-{{ checksum "Cargo.lock" }}
669+
# TODO: enable again once 2.2 is released
668670
- check_contract:
669671
min_version: "1.4"
670672
skip_cosmwasm_check: true
@@ -677,7 +679,7 @@ jobs:
677679
- target/wasm32-unknown-unknown/release/.fingerprint
678680
- target/wasm32-unknown-unknown/release/build
679681
- target/wasm32-unknown-unknown/release/deps
680-
key: cargocache-v2-contract_hackatom-rust:1.74-{{ checksum "Cargo.lock" }}
682+
key: cargocache-v2-contract_hackatom-rust:1.82-{{ checksum "Cargo.lock" }}
681683

682684
contract_ibc_callbacks:
683685
docker:

0 commit comments

Comments
 (0)