wormhole/sui/token_bridge/Makefile

19 lines
353 B
Makefile
Raw Normal View History

2023-01-12 11:36:42 -08:00
-include ../../Makefile.help
VERSION = $(shell grep -Po "version = \"\K[^\"]*" Move.toml | sed "s/\./_/g")
2023-01-12 11:36:42 -08:00
.PHONY: clean
clean:
rm -rf build
.PHONY: check
2023-01-12 11:36:42 -08:00
## Build contract
check:
sui move build -d
2023-01-12 11:36:42 -08:00
.PHONY: test
## Run tests
test: check
grep "public(friend) fun current_version(): V__${VERSION} {" sources/version_control.move
sui move test -t 1