blob: 1b1376d42533e20a475796849cb0029d8bcb4fc6 [file] [log] [blame]
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001# Directory to place `go install`ed binaries into.
2export GOBIN ?= $(shell pwd)/bin
divyadesai19009132020-03-04 12:58:08 +00003
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00004GOLINT = $(GOBIN)/golint
5GEN_ATOMICINT = $(GOBIN)/gen-atomicint
6GEN_ATOMICWRAPPER = $(GOBIN)/gen-atomicwrapper
7STATICCHECK = $(GOBIN)/staticcheck
divyadesai19009132020-03-04 12:58:08 +00008
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00009GO_FILES ?= $(shell find . '(' -path .git -o -path vendor ')' -prune -o -name '*.go' -print)
10
11# Also update ignore section in .codecov.yml.
12COVER_IGNORE_PKGS = \
13 go.uber.org/atomic/internal/gen-atomicint \
14 go.uber.org/atomic/internal/gen-atomicwrapper
divyadesai19009132020-03-04 12:58:08 +000015
16.PHONY: build
17build:
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000018 go build ./...
divyadesai19009132020-03-04 12:58:08 +000019
20.PHONY: test
21test:
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000022 go test -race ./...
divyadesai19009132020-03-04 12:58:08 +000023
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000024.PHONY: gofmt
25gofmt:
26 $(eval FMT_LOG := $(shell mktemp -t gofmt.XXXXX))
27 gofmt -e -s -l $(GO_FILES) > $(FMT_LOG) || true
28 @[ ! -s "$(FMT_LOG)" ] || (echo "gofmt failed:" && cat $(FMT_LOG) && false)
divyadesai19009132020-03-04 12:58:08 +000029
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000030$(GOLINT):
31 cd tools && go install golang.org/x/lint/golint
divyadesai19009132020-03-04 12:58:08 +000032
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000033$(STATICCHECK):
34 cd tools && go install honnef.co/go/tools/cmd/staticcheck
divyadesai19009132020-03-04 12:58:08 +000035
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000036$(GEN_ATOMICWRAPPER): $(wildcard ./internal/gen-atomicwrapper/*)
37 go build -o $@ ./internal/gen-atomicwrapper
38
39$(GEN_ATOMICINT): $(wildcard ./internal/gen-atomicint/*)
40 go build -o $@ ./internal/gen-atomicint
41
42.PHONY: golint
43golint: $(GOLINT)
44 $(GOLINT) ./...
45
46.PHONY: staticcheck
47staticcheck: $(STATICCHECK)
48 $(STATICCHECK) ./...
divyadesai19009132020-03-04 12:58:08 +000049
50.PHONY: lint
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000051lint: gofmt golint staticcheck generatenodirty
divyadesai19009132020-03-04 12:58:08 +000052
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000053# comma separated list of packages to consider for code coverage.
54COVER_PKG = $(shell \
55 go list -find ./... | \
56 grep -v $(foreach pkg,$(COVER_IGNORE_PKGS),-e "^$(pkg)$$") | \
57 paste -sd, -)
divyadesai19009132020-03-04 12:58:08 +000058
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000059.PHONY: cover
60cover:
61 go test -coverprofile=cover.out -coverpkg $(COVER_PKG) -v ./...
62 go tool cover -html=cover.out -o cover.html
63
64.PHONY: generate
65generate: $(GEN_ATOMICINT) $(GEN_ATOMICWRAPPER)
66 go generate ./...
67
68.PHONY: generatenodirty
69generatenodirty:
70 @[ -z "$$(git status --porcelain)" ] || ( \
71 echo "Working tree is dirty. Commit your changes first."; \
72 exit 1 )
73 @make generate
74 @status=$$(git status --porcelain); \
75 [ -z "$$status" ] || ( \
76 echo "Working tree is dirty after `make generate`:"; \
77 echo "$$status"; \
78 echo "Please ensure that the generated code is up-to-date." )