You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
439 B

9 years ago
8 years ago
9 years ago
8 years ago
9 years ago
8 years ago
9 years ago
8 years ago
9 years ago
8 years ago
  1. .PHONY: all test get_deps
  2. all: protoc test install
  3. NOVENDOR = go list github.com/tendermint/tmsp/... | grep -v /vendor/
  4. protoc:
  5. protoc --go_out=plugins=grpc:. types/*.proto
  6. install:
  7. go install github.com/tendermint/tmsp/cmd/...
  8. test:
  9. go test `${NOVENDOR}`
  10. bash tests/test.sh
  11. test_integrations: get_vendor_deps install test
  12. get_deps:
  13. go get -d `${NOVENDOR}`
  14. get_vendor_deps:
  15. go get github.com/Masterminds/glide
  16. glide install