1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-05-25 21:53:14 +02:00

chore(gomu): tweak makefile template (#2238)

This commit is contained in:
Christoffer Åström 2021-09-02 19:24:28 +02:00 committed by GitHub
parent a159598f36
commit e080791787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,27 +5,27 @@ var Makefile = `GOPATH:=$(shell go env GOPATH)
.PHONY: init
init:
go get -u google.golang.org/protobuf/proto
go install github.com/golang/protobuf/protoc-gen-go@latest
go install github.com/asim/go-micro/cmd/protoc-gen-micro/v3@latest
@go get -u google.golang.org/protobuf/proto
@go install github.com/golang/protobuf/protoc-gen-go@latest
@go install github.com/asim/go-micro/cmd/protoc-gen-micro/v3@latest
.PHONY: proto
proto:
protoc --proto_path=. --micro_out=. --go_out=:. proto/{{.Alias}}.proto
@protoc --proto_path=. --micro_out=. --go_out=:. proto/{{.Alias}}.proto
.PHONY: tidy
tidy:
go mod tidy
@go mod tidy
.PHONY: build
build:
go build -o {{.Alias}} *.go
@go build -o {{.Alias}} *.go
.PHONY: test
test:
go test -v ./... -cover
@go test -v ./... -cover
.PHONY: docker
docker:
docker build -t {{.Alias}}:latest .
@docker build -t {{.Alias}}:latest .
`