79 lines
1.9 KiB
Makefile
79 lines
1.9 KiB
Makefile
dev_build_version=$(shell git describe --tags --always --dirty)
|
|
|
|
# TODO: run golint and errcheck, but only to catch *new* violations and
|
|
# decide whether to change code or not (e.g. we need to be able to whitelist
|
|
# violations already in the code). They can be useful to catch errors, but
|
|
# they are just too noisy to be a requirement for a CI -- we don't even *want*
|
|
# to fix some of the things they consider to be violations.
|
|
.PHONY: ci
|
|
ci: deps checkgofmt vet staticcheck ineffassign predeclared test
|
|
|
|
.PHONY: deps
|
|
deps:
|
|
go get -d -v -t ./...
|
|
|
|
.PHONY: updatedeps
|
|
updatedeps:
|
|
go get -d -v -t -u -f ./...
|
|
|
|
.PHONY: install
|
|
install:
|
|
go install -ldflags '-X "main.version=dev build $(dev_build_version)"' ./...
|
|
|
|
.PHONY: release
|
|
release:
|
|
@go install github.com/goreleaser/goreleaser@v0.134.0
|
|
goreleaser --rm-dist
|
|
|
|
.PHONY: docker
|
|
docker:
|
|
@echo $(dev_build_version) > VERSION
|
|
docker build -t fullstorydev/grpcurl:$(dev_build_version) .
|
|
@rm VERSION
|
|
|
|
.PHONY: checkgofmt
|
|
checkgofmt:
|
|
gofmt -s -l .
|
|
@if [ -n "$$(gofmt -s -l .)" ]; then \
|
|
exit 1; \
|
|
fi
|
|
|
|
.PHONY: vet
|
|
vet:
|
|
go vet ./...
|
|
|
|
# This all works fine with Go modules, but without modules,
|
|
# CI is just getting latest master for dependencies like grpc.
|
|
.PHONY: staticcheck
|
|
staticcheck:
|
|
@go install honnef.co/go/tools/cmd/staticcheck@v0.0.1-2020.1.4
|
|
staticcheck ./...
|
|
|
|
.PHONY: ineffassign
|
|
ineffassign:
|
|
@go install github.com/gordonklaus/ineffassign@7953dde2c7bf
|
|
ineffassign .
|
|
|
|
.PHONY: predeclared
|
|
predeclared:
|
|
@go install github.com/nishanths/predeclared@86fad755b4d3
|
|
predeclared .
|
|
|
|
# Intentionally omitted from CI, but target here for ad-hoc reports.
|
|
.PHONY: golint
|
|
golint:
|
|
# TODO: pin version
|
|
@go install golang.org/x/lint/golint@latest
|
|
golint -min_confidence 0.9 -set_exit_status ./...
|
|
|
|
# Intentionally omitted from CI, but target here for ad-hoc reports.
|
|
.PHONY: errcheck
|
|
errcheck:
|
|
# TODO: pin version
|
|
@go install github.com/kisielk/errcheck@latest
|
|
errcheck ./...
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -race ./...
|