2019-07-17 22:25:42 +00:00
|
|
|
GO111MODULE = on
|
|
|
|
|
|
|
|
ENABLE_METRICS ?= true
|
|
|
|
BUILD_FLAGS ?= $(shell echo "-ldflags '\
|
2019-11-21 16:19:22 +00:00
|
|
|
-X github.com/status-im/status-go/protocol/vendor/github.com/ethereum/go-ethereum/metrics.EnabledStr=$(ENABLE_METRICS)'")
|
2019-07-17 22:25:42 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
go test ./...
|
|
|
|
.PHONY: test
|
|
|
|
|
|
|
|
test-race:
|
|
|
|
go test -race ./...
|
|
|
|
.PHONY: test-race
|
|
|
|
|
|
|
|
lint:
|
|
|
|
golangci-lint run -v
|
|
|
|
.PHONY: lint
|
|
|
|
|
|
|
|
install-linter:
|
|
|
|
# install linter
|
2019-10-28 13:50:33 +00:00
|
|
|
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.21.0
|
2019-07-17 22:25:42 +00:00
|
|
|
.PHONY: install-linter
|
|
|
|
|
|
|
|
install-dev:
|
|
|
|
# a tool to vendor non-go files
|
|
|
|
go get github.com/goware/modvendor@latest
|
|
|
|
|
|
|
|
go get github.com/golang/mock/gomock@latest
|
|
|
|
go install github.com/golang/mock/mockgen
|
|
|
|
|
|
|
|
go get github.com/kevinburke/go-bindata/go-bindata@v3.13.0
|
|
|
|
go get github.com/golang/protobuf/protoc-gen-go@v1.3.1
|
|
|
|
.PHONY: install-dev
|
|
|
|
|
|
|
|
generate:
|
|
|
|
go generate ./...
|
|
|
|
.PHONY: generate
|
2019-09-02 09:29:06 +00:00
|
|
|
|
|
|
|
new-migration:
|
|
|
|
@if [ -z "$$DIR" ]; then \
|
|
|
|
echo 'missing DIR var'; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
@if [ -z "$$NAME" ]; then \
|
|
|
|
echo 'missing NAME var'; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p $(DIR)
|
|
|
|
touch $(DIR)/`date +"%s"`_$(NAME).down.sql ./$(DIR)/`date +"%s"`_$(NAME).up.sql
|
|
|
|
.PHONY: create-migration
|