mirror of
https://github.com/fullstorydev/grpcurl.git
synced 2026-05-22 19:51:44 +03:00
* add goreleaser Add a goreleaser configuration file that builds binaries for Linux, MacOS and Windows, for 32bit (x86/386) and 64bit (x64/amd64). The binaries will be archived into a tar.gz/zip file along with the LICENSE file. The `dist/` directory will be written to by goreleaser with the binaries during the build process, so it's also been added to .gitignore. To build all the binaries and release them to GitHub: 1. Tag the release. e.g. `git tag -a v1.0.0 -m 'First release'` 2. Generate a GitHub Personal Access Token. See https://github.com/settings/tokens. 3. Push the release to GitHub. e.g. `git push origin v1.0.0` 4. Make the release, which will publish binaries to the GitHub "Releases" page. e.g. `GITHUB_TOKEN=xxxxxxx... make release` * add -version flag Run `grpcurl -version` to see the release version. Use `make install` to build a binary that shows the version based on current git hash (which will show a version number if HEAD is a release tag and otherwise uses `git describe` to summarize the version).
74 lines
1.7 KiB
Makefile
74 lines
1.7 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 unused 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:
|
|
@GO111MODULE=off go get github.com/goreleaser/goreleaser
|
|
goreleaser --rm-dist
|
|
|
|
.PHONY: checkgofmt
|
|
checkgofmt:
|
|
gofmt -s -l .
|
|
@if [ -n "$$(gofmt -s -l .)" ]; then \
|
|
exit 1; \
|
|
fi
|
|
|
|
.PHONY: vet
|
|
vet:
|
|
go vet ./...
|
|
|
|
.PHONY: staticcheck
|
|
staticcheck:
|
|
@go get honnef.co/go/tools/cmd/staticcheck
|
|
staticcheck ./...
|
|
|
|
.PHONY: unused
|
|
unused:
|
|
@go get honnef.co/go/tools/cmd/unused
|
|
unused ./...
|
|
|
|
.PHONY: ineffassign
|
|
ineffassign:
|
|
@go get github.com/gordonklaus/ineffassign
|
|
ineffassign .
|
|
|
|
.PHONY: predeclared
|
|
predeclared:
|
|
@go get github.com/nishanths/predeclared
|
|
predeclared .
|
|
|
|
# Intentionally omitted from CI, but target here for ad-hoc reports.
|
|
.PHONY: golint
|
|
golint:
|
|
@go get github.com/golang/lint/golint
|
|
golint -min_confidence 0.9 -set_exit_status ./...
|
|
|
|
# Intentionally omitted from CI, but target here for ad-hoc reports.
|
|
.PHONY: errchack
|
|
errcheck:
|
|
@go get github.com/kisielk/errcheck
|
|
errcheck ./...
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -race ./...
|