Skip to content

Commit

Permalink
imp: updated just file
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Jun 26, 2024
1 parent 583705f commit 4ea8512
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build all wasm using cosmwasm/optimizer:0.15.1 docker image
build-optimize:
echo "Compiling optimized wasm..."
@echo "Compiling optimized wasm..."
docker run --rm -t -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
Expand All @@ -14,16 +14,21 @@ lint:
# Generate JSON schema files for all contracts in the project in a directory named `schemas`
generate-schemas:
mkdir -p schemas
echo "Generating JSON schema files for ics02-client..."
@echo "Generating JSON schema files for ics02-client..."
cargo run --bin ics02_schema
cp schema/cw-ibc-lite-ics02-client.json schemas/
echo "Generating JSON schema files for ics07-tendermint..."
@echo "Generating JSON schema files for ics07-tendermint..."
cargo run --bin ics07_schema
cp schema/cw-ibc-lite-ics07-tendermint.json schemas/
echo "Generating JSON schema files for ics26-router..."
@echo "Generating JSON schema files for ics26-router..."
cargo run --bin ics26_schema
cp schema/cw-ibc-lite-ics26-router.json schemas/
echo "Generating JSON schema files for ics20-transfer..."
@echo "Generating JSON schema files for ics20-transfer..."
cargo run --bin ics20_schema
cp schema/cw-ibc-lite-ics20-transfer.json schemas/
rm -r schema

# Run the e2e tests
e2e-test testname:
@echo "Running {{testname}} test..."
cd e2e/interchaintestv8 && go test -v -run={{testname}}

0 comments on commit 4ea8512

Please sign in to comment.