76 lines
2.1 KiB
Makefile
76 lines
2.1 KiB
Makefile
bridge_SOURCE=wormhole
|
|
token_bridge_SOURCE=token_bridge_terra
|
|
|
|
SOURCE_FILES=$(shell find . -name "*.rs" -or -name "*.lock" -or -name "*.toml" | grep -v target)
|
|
|
|
PACKAGES=$(shell find . -name "Cargo.toml" | grep -E 'contracts' | xargs cat | grep "name *=" | cut -d' ' -f3 | sed s/\"//g | sed s/-/_/g)
|
|
WASMS=$(patsubst %, artifacts/%.wasm, $(PACKAGES))
|
|
|
|
-include ../Makefile.help
|
|
|
|
.PHONY: artifacts
|
|
## Build contracts.
|
|
artifacts: artifacts/checksums.txt
|
|
|
|
VALID_mainnet=1
|
|
VALID_testnet=1
|
|
VALID_devnet=1
|
|
.PHONY: check-network
|
|
check-network:
|
|
ifndef VALID_$(NETWORK)
|
|
$(error Invalid or missing NETWORK. Please call with `$(MAKE) $(MAKECMDGOALS) NETWORK=[mainnet | testnet | devnet]`)
|
|
endif
|
|
|
|
$(WASMS) artifacts/checksums.txt: $(SOURCE_FILES)
|
|
DOCKER_BUILDKIT=1 docker build --target artifacts -o artifacts .
|
|
|
|
payer-$(NETWORK):
|
|
$(error Missing private key in payer-$(NETWORK))
|
|
|
|
.PHONY: deploy/bridge
|
|
## Deploy core bridge
|
|
deploy/bridge: bridge-code-id-$(NETWORK).txt
|
|
|
|
.PHONY: deploy/token_bridge
|
|
## Deploy token bridge
|
|
deploy/token_bridge: token_bridge-code-id-$(NETWORK).txt
|
|
|
|
%-code-id-$(NETWORK).txt: check-network tools/node_modules payer-$(NETWORK) artifacts
|
|
@echo "Deploying artifacts/$($*_SOURCE).wasm on $(NETWORK)"
|
|
@node tools/deploy_single.js \
|
|
--network $(NETWORK) \
|
|
--artifact artifacts/$($*_SOURCE).wasm \
|
|
--private-key "$$(cat payer-$(NETWORK))" \
|
|
| grep -i "code id" | sed s/[^0-9]//g \
|
|
> $@
|
|
@echo "Deployed at code id $$(cat $@) (stored in $@)"
|
|
|
|
tools/node_modules: tools/package-lock.json
|
|
cd tools && npm ci
|
|
|
|
test/node_modules: test/package-lock.json
|
|
cd test && npm ci
|
|
|
|
.PHONY: unit-test
|
|
## Run unit tests
|
|
unit-test:
|
|
cargo test -p wormhole-bridge-terra
|
|
cargo test -p token-bridge-terra
|
|
|
|
.PHONY: test
|
|
## Run unit and integration tests
|
|
test: artifacts test/node_modules unit-test
|
|
@if pgrep terrad; then echo "Error: terrad already running. Stop it before running tests"; exit 1; fi
|
|
cd devnet && docker compose up --detach
|
|
sleep 10
|
|
cd test && npm run test || (cd ../devnet && docker compose down && exit 1)
|
|
cd devnet && docker compose down
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f $(WASMS)
|
|
rm -f artifacts/checksums.txt
|
|
rm -rf tools/node_modules
|
|
rm -rf test/node_modules
|
|
|