Skip to content

Commit

Permalink
Merge pull request #789 from CosmWasm/cosmwasm-1-1-rc-1
Browse files Browse the repository at this point in the history
CosmWasm `1.1.0-rc.1`
  • Loading branch information
uint authored Aug 31, 2022
2 parents 28c720d + 4967190 commit 24af1b9
Show file tree
Hide file tree
Showing 95 changed files with 649 additions and 781 deletions.
19 changes: 7 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ jobs:
# We also sanity-check the resultant wasm files.
wasm-build:
docker:
- image: rust:1.58.1
- image: rust:1.59.0
steps:
- checkout:
path: ~/project
Expand All @@ -587,7 +587,7 @@ jobs:
command: rustc --version; cargo --version; rustup --version
- restore_cache:
keys:
- cargocache-wasm-rust:1.58.1-{{ checksum "~/project/Cargo.lock" }}
- cargocache-wasm-rust:1.59.0-{{ checksum "~/project/Cargo.lock" }}
- run:
name: Add wasm32 target
command: rustup target add wasm32-unknown-unknown
Expand All @@ -597,25 +597,20 @@ jobs:
for C in ./contracts/*/
do
echo "Compiling `basename $C`..."
(cd $C && cargo build --release --target wasm32-unknown-unknown --locked)
(cd $C && cargo build --release --lib --target wasm32-unknown-unknown --locked)
done
- run:
name: Install check_contract
name: Install cosmwasm-check
# Uses --debug for compilation speed
command: cargo install --debug --version 1.0.0 --features iterator --example check_contract -- cosmwasm-vm
command: cargo install --debug --version 1.1.0-rc.1 cosmwasm-check
- save_cache:
paths:
- /usr/local/cargo/registry
- target
key: cargocache-wasm-rust:1.58.1-{{ checksum "~/project/Cargo.lock" }}
key: cargocache-wasm-rust:1.59.0-{{ checksum "~/project/Cargo.lock" }}
- run:
name: Check wasm contracts
command: |
for W in ./target/wasm32-unknown-unknown/release/*.wasm
do
echo -n "Checking `basename $W`... "
check_contract $W
done
command: cosmwasm-check ./target/wasm32-unknown-unknown/release/*.wasm

package_multi_test:
docker:
Expand Down
Loading

0 comments on commit 24af1b9

Please sign in to comment.