-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
44 lines (34 loc) · 1.43 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.PHONY: schema test clippy build fmt compile check_contracts
schema:
@find contracts/* -maxdepth 2 -type f -name Cargo.toml -execdir cargo schema \;
test:
@cargo test
clippy:
@rustup target add wasm32-unknown-unknown
@cargo clippy --all --all-targets -- -D warnings
@cargo clippy --lib --target wasm32-unknown-unknown -- -D warnings
fmt:
@cargo fmt -- --check
doc:
@cargo doc
compile:
@docker run --rm -v "$(CURDIR)":/code \
--mount type=volume,source="$(notdir $(CURDIR))_cache",target=/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
--platform linux/amd64 \
cosmwasm/workspace-optimizer:0.15.1
@sudo chown -R $(shell id -u):$(shell id -g) artifacts
compile_arm64:
@docker run --rm -v "$(CURDIR)":/code \
--mount type=volume,source="$(notdir $(CURDIR))_cache",target=/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
--platform linux/arm64 \
cosmwasm/workspace-optimizer-arm64:0.15.1
@cd artifacts && for file in *-aarch64.wasm; do cp -f "$$file" "$${file%-aarch64.wasm}.wasm"; done
check_contracts:
@cargo install cosmwasm-check --locked
@cosmwasm-check --available-capabilities iterator,staking,stargate,neutron,cosmwasm_1_1,cosmwasm_1_2 artifacts/*.wasm
build_arm64: schema clippy test fmt doc compile_arm64 check_contracts
build: schema clippy test fmt doc compile check_contracts
build_ts_client: schema
@cd ts-client && yarn && yarn generate