forked from atlassian/gostatsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
148 lines (116 loc) · 4.31 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
VERSION_VAR := main.Version
GIT_VAR := main.GitCommit
BUILD_DATE_VAR := main.BuildDate
REPO_VERSION := $$(git describe --abbrev=0 --tags)
BUILD_DATE := $$(date +%Y-%m-%d-%H:%M)
GIT_HASH := $$(git rev-parse --short HEAD)
GOBUILD_VERSION_ARGS := -ldflags "-s -X $(VERSION_VAR)=$(REPO_VERSION) -X $(GIT_VAR)=$(GIT_HASH) -X $(BUILD_DATE_VAR)=$(BUILD_DATE)"
BINARY_NAME := gostatsd
IMAGE_NAME := atlassianlabs/$(BINARY_NAME)
ARCH ?= darwin
METALINTER_CONCURRENCY ?= 4
GOVERSION := 1.6.3
GP := /gopath
setup: setup-ci
go get -v -u github.com/githubnemo/CompileDaemon
go get -v -u github.com/jstemmer/go-junit-report
setup-ci:
go get -v -u github.com/Masterminds/glide
go get -v -u github.com/alecthomas/gometalinter
gometalinter --install --update
glide install
build: *.go fmt
go build -o build/bin/$(ARCH)/$(BINARY_NAME) $(GOBUILD_VERSION_ARGS) github.com/atlassian/gostatsd
build-race: *.go fmt
go build -race -o build/bin/$(ARCH)/$(BINARY_NAME) $(GOBUILD_VERSION_ARGS) github.com/atlassian/gostatsd
build-all:
go build $$(glide nv)
fmt:
gofmt -w=true -s $$(find . -type f -name '*.go' -not -path "./vendor/*")
goimports -w=true -d $$(find . -type f -name '*.go' -not -path "./vendor/*")
test:
go test $$(glide nv)
test-race:
go test -race $$(glide nv)
bench:
go test -bench=. -run=XXX $$(glide nv)
bench-race:
go test -race -bench=. -run=XXX $$(glide nv)
cover:
./cover.sh
go tool cover -func=coverage.out
go tool cover -html=coverage.out
coveralls:
./cover.sh
goveralls -coverprofile=coverage.out -service=travis-ci
junit-test: build
go test -v $$(glide nv) | go-junit-report > test-report.xml
check:
go install
go install ./tester
gometalinter --concurrency=$(METALINTER_CONCURRENCY) --deadline=600s ./... --vendor --linter='errcheck:errcheck:-ignore=net:Close' --cyclo-over=20 \
--linter='vet:go tool vet -composites=false {paths}:PATH:LINE:MESSAGE' --disable=interfacer --disable=golint --dupl-threshold=200
check-all:
go install
go install ./tester
gometalinter --concurrency=$(METALINTER_CONCURRENCY) --deadline=600s ./... --vendor --cyclo-over=20 \
--linter='vet:go tool vet {paths}:PATH:LINE:MESSAGE' --dupl-threshold=65
fuzz-setup:
go get -v -u github.com/dvyukov/go-fuzz/go-fuzz
go get -v -u github.com/dvyukov/go-fuzz/go-fuzz-build
fuzz:
go-fuzz-build github.com/atlassian/gostatsd/statsd
go-fuzz -bin=./statsd-fuzz.zip -workdir=test_fixtures/lexer_fuzz
watch:
CompileDaemon -color=true -build "make test"
git-hook:
cp dev/push-hook.sh .git/hooks/pre-push
# Compile a static binary. Cannot be used with -race
docker:
docker run \
--rm \
-v "$(GOPATH)":"$(GP)" \
-w "$(GP)/src/github.com/atlassian/gostatsd" \
-e GOPATH="$(GP)" \
-e CGO_ENABLED=0 \
golang:$(GOVERSION) \
go build -o build/bin/linux/$(BINARY_NAME) $(GOBUILD_VERSION_ARGS) -a -installsuffix cgo github.com/atlassian/gostatsd
docker build --pull -t $(IMAGE_NAME):$(GIT_HASH) build
# Compile a binary with -race. Needs to be run on a glibc-based system.
docker-race:
docker run \
--rm \
-v "$(GOPATH)":"$(GP)" \
-w "$(GP)/src/github.com/atlassian/gostatsd" \
-e GOPATH="$(GP)" \
golang:$(GOVERSION) \
go build -race -o build/bin/linux/$(BINARY_NAME) $(GOBUILD_VERSION_ARGS) -a -installsuffix cgo github.com/atlassian/gostatsd
docker build --pull -t $(IMAGE_NAME):$(GIT_HASH)-race -f build/Dockerfile-glibc build
release-hash: docker
docker push $(IMAGE_NAME):$(GIT_HASH)
release-normal: release-hash
docker tag $(IMAGE_NAME):$(GIT_HASH) $(IMAGE_NAME):latest
docker push $(IMAGE_NAME):latest
docker tag $(IMAGE_NAME):$(GIT_HASH) $(IMAGE_NAME):$(REPO_VERSION)
docker push $(IMAGE_NAME):$(REPO_VERSION)
release-hash-race: docker-race
docker push $(IMAGE_NAME):$(GIT_HASH)-race
release-race: docker-race
docker tag $(IMAGE_NAME):$(GIT_HASH)-race $(IMAGE_NAME):$(REPO_VERSION)-race
docker push $(IMAGE_NAME):$(REPO_VERSION)-race
release: release-normal release-race
run: build
./build/bin/$(ARCH)/$(BINARY_NAME) --backends=stdout --verbose --flush-interval=1s
run-docker: docker
cd build/ && docker-compose rm -f gostatsd
docker-compose -f build/docker-compose.yml build
docker-compose -f build/docker-compose.yml up -d
stop-docker:
cd build/ && docker-compose stop
version:
@echo $(REPO_VERSION)
clean:
rm -f build/bin/*
-docker rm $(docker ps -a -f 'status=exited' -q)
-docker rmi $(docker images -f 'dangling=true' -q)
.PHONY: build