2021-03-30 19:59:26 +02:00
|
|
|
.PHONY: build
|
|
|
|
build:
|
|
|
|
goreleaser build --rm-dist --snapshot
|
|
|
|
|
|
|
|
.PHONY: release
|
|
|
|
release:
|
|
|
|
goreleaser release --rm-dist --snapshot --skip-publish
|
|
|
|
|
|
|
|
.PHONY: generate
|
|
|
|
generate:
|
|
|
|
go generate
|
|
|
|
|
|
|
|
.PHONY: lint
|
|
|
|
lint:
|
2021-04-16 09:34:22 +02:00
|
|
|
golangci-lint run --timeout 10m --enable-all --disable=exhaustivestruct
|
2021-05-05 11:14:17 +02:00
|
|
|
buf lint -v
|
2021-03-30 19:59:26 +02:00
|
|
|
|
|
|
|
.PHONY: test
|
|
|
|
test:
|
|
|
|
go test -v -race -cover ./...
|
|
|
|
|
2021-04-10 17:47:18 +02:00
|
|
|
.PHONY: test-integration
|
|
|
|
test-integration: release
|
|
|
|
go test -v -tags=integration -timeout=120m
|
|
|
|
|
2021-03-30 19:59:26 +02:00
|
|
|
.PHONY: readme
|
|
|
|
readme:
|
|
|
|
goreadme -title revive > README.md
|
2021-04-10 17:47:18 +02:00
|
|
|
|
|
|
|
.PHONY: tidy
|
|
|
|
tidy:
|
|
|
|
go mod tidy
|
|
|
|
go mod vendor
|
|
|
|
|
|
|
|
.PHONY: build-image
|
|
|
|
build-image:
|
|
|
|
sudo ./scripts/build.sh
|
2021-05-04 08:41:43 +02:00
|
|
|
|
|
|
|
.PHONY: install-tools
|
|
|
|
install-tools:
|
2021-05-05 11:14:17 +02:00
|
|
|
go install -v \
|
2021-05-04 08:41:43 +02:00
|
|
|
github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway \
|
|
|
|
github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2 \
|
|
|
|
google.golang.org/protobuf/cmd/protoc-gen-go \
|
2021-05-05 11:14:17 +02:00
|
|
|
google.golang.org/grpc/cmd/protoc-gen-go-grpc \
|
|
|
|
github.com/bufbuild/buf/cmd/buf \
|
|
|
|
github.com/bufbuild/buf/cmd/protoc-gen-buf-breaking \
|
|
|
|
github.com/bufbuild/buf/cmd/protoc-gen-buf-lint
|
|
|
|
|
|
|
|
.PHONY: grpc-gen
|
|
|
|
grpc-gen:
|
|
|
|
buf beta mod update
|
|
|
|
buf generate -v
|