-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
109 lines (86 loc) · 3.39 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
ORG_PATH="github.com/imduffy15"
BINARY_NAME := k8s-gke-service-account-assigner
REPO_PATH="$(ORG_PATH)/$(BINARY_NAME)"
VERSION_VAR := $(REPO_PATH)/version.Version
GIT_VAR := $(REPO_PATH)/version.GitCommit
BUILD_DATE_VAR := $(REPO_PATH)/version.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)"
# useful for other docker repos
DOCKER_REPO ?= imduffy15
IMAGE_NAME := $(DOCKER_REPO)/$(BINARY_NAME)
ARCH ?= darwin
METALINTER_CONCURRENCY ?= 4
METALINTER_DEADLINE ?= 180
# useful for passing --build-arg http_proxy :)
DOCKER_BUILD_FLAGS :=
setup:
go get -v -u github.com/Masterminds/glide
go get -v -u github.com/githubnemo/CompileDaemon
go get -v -u github.com/alecthomas/gometalinter
go get -v -u github.com/jstemmer/go-junit-report
go get -v -u golang.org/x/tools/cmd/goimports
go get -v github.com/dnephin/govet
go get -v github.com/mattn/goveralls
gometalinter --install --update
glide install --strip-vendor
build: *.go fmt
go build -o build/bin/$(ARCH)/$(BINARY_NAME) $(GOBUILD_VERSION_ARGS) github.com/imduffy15/$(BINARY_NAME)/cmd
build-race: *.go fmt
go build -race -o build/bin/$(ARCH)/$(BINARY_NAME) $(GOBUILD_VERSION_ARGS) github.com/imduffy15/$(BINARY_NAME)/cmd
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=. $$(glide nv)
bench-race:
go test -race -bench=. $$(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 ./cmd
gometalinter --concurrency=$(METALINTER_CONCURRENCY) --deadline=$(METALINTER_DEADLINE)s ./... --vendor --linter='errcheck:errcheck:-ignore=net:Close' --cyclo-over=20 \
--linter='vet:govet --no-recurse -composites=false:PATH:LINE:MESSAGE' --disable=interfacer --dupl-threshold=50 \
--disable=vetshadow
check-all:
go install ./cmd
gometalinter --concurrency=$(METALINTER_CONCURRENCY) --deadline=600s ./... --vendor --cyclo-over=20 \
--linter='vet:govet --no-recurse:PATH:LINE:MESSAGE' --dupl-threshold=50 \
--disable=vetshadow
watch:
CompileDaemon -color=true -build "make cross" --exclude-dir=".git" -exclude-dir="vendor"
cross:
CGO_ENABLED=0 GOOS=linux go build -o build/bin/linux/$(BINARY_NAME) $(GOBUILD_VERSION_ARGS) -a -installsuffix cgo github.com/imduffy15/$(BINARY_NAME)/cmd
docker: cross
docker build -t $(IMAGE_NAME):$(GIT_HASH) . $(DOCKER_BUILD_FLAGS)
docker-dev: docker
docker tag $(IMAGE_NAME):$(GIT_HASH) $(IMAGE_NAME):dev
# docker push $(IMAGE_NAME):dev
release: check test docker
docker push $(IMAGE_NAME):$(GIT_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)
version:
@echo $(REPO_VERSION)
clean:
rm -rf build/bin/*
-docker rm $(docker ps -a -f 'status=exited' -q)
-docker rmi $(docker images -f 'dangling=true' -q)
.PHONY: build