Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,20 @@ unittest-main:

.PHONY: install-mock-generators
install-mock-generators:
ifndef FLOW_GO_SKIP_TOOL_INSTALL
cd ${GOPATH}; \
go install github.com/vektra/mockery/v3@v3.6.1;
go install github.com/vektra/mockery/v3@v3.6.1;
endif

.PHONY: install-tools
install-tools: check-go-version install-mock-generators
ifndef FLOW_GO_SKIP_TOOL_INSTALL
cd ${GOPATH}; \
go install github.com/golang/protobuf/protoc-gen-go@v1.3.2; \
go install github.com/uber/prototool/cmd/prototool@v1.9.0; \
go install github.com/gogo/protobuf/protoc-gen-gofast@latest; \
go install golang.org/x/tools/cmd/stringer@master;
endif

.PHONY: verify-mocks
verify-mocks: tidy generate-mocks
Expand Down
Loading