Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CosmWasm 1.1.0-rc.1 #789

Merged
merged 9 commits into from
Aug 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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