Skip to content

Commit

Permalink
Use upper Rust version to compile hackatom
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Oct 23, 2024
1 parent 38a5f34 commit ee18ff5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,8 @@ jobs:

contract_hackatom:
docker:
- image: rust:1.74
# We compile this contract with the upper bound to detect issues with new Rust versions early
- image: rust:1.82
environment:
RUST_BACKTRACE: 1
working_directory: ~/cosmwasm/contracts/hackatom
Expand All @@ -664,7 +665,8 @@ jobs:
command: rustc --version; cargo --version; rustup --version
- restore_cache:
keys:
- cargocache-v2-contract_hackatom-rust:1.74-{{ checksum "Cargo.lock" }}
- cargocache-v2-contract_hackatom-rust:1.82-{{ checksum "Cargo.lock" }}
# TODO: enable again once 2.2 is released
- check_contract:
min_version: "1.4"
skip_cosmwasm_check: true
Expand All @@ -677,7 +679,7 @@ jobs:
- target/wasm32-unknown-unknown/release/.fingerprint
- target/wasm32-unknown-unknown/release/build
- target/wasm32-unknown-unknown/release/deps
key: cargocache-v2-contract_hackatom-rust:1.74-{{ checksum "Cargo.lock" }}
key: cargocache-v2-contract_hackatom-rust:1.82-{{ checksum "Cargo.lock" }}

contract_ibc_callbacks:
docker:
Expand Down

0 comments on commit ee18ff5

Please sign in to comment.