forked from mgumz/mtr-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
136 lines (112 loc) · 4.04 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
PROJECT=mtr-exporter
VERSION=$(shell cat VERSION)
BUILD_DATE=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
GIT_HASH=$(shell git rev-parse HEAD)
CONTAINER_PLATFORM?=linux/amd64
TARGETS=linux.amd64 \
linux.386 \
linux.arm64 \
linux.mips64 \
windows.amd64.exe \
freebsd.amd64 \
darwin.amd64 \
darwin.arm64
BINARIES=$(addprefix bin/$(PROJECT)-$(VERSION)., $(TARGETS))
RELEASES=$(subst windows.amd64.tar.gz,windows.amd64.zip,$(foreach r,$(subst .exe,,$(TARGETS)),releases/$(PROJECT)-$(VERSION).$(r).tar.gz))
LDFLAGS=$(LDFLAGS) -ldflags "-X main.Version=$(VERSION) -X main.BuildDate=$(BUILD_DATE) -X main.GitHash=$(GIT_HASH)"
$(PROJECT):
go build -v -o $@ ./cmd/$(PROJECT)
######################################################
## release related
binaries: $(BINARIES)
release: $(RELEASES)
releases: $(RELEASES)
list-releases:
@echo $(RELEASES)|tr ' ' '\n'
clean:
rm -f $(BINARIES) $(RELEASES)
$(PROJECT): bin/$(PROJECT)
bin/$(PROJECT): cmd/$(PROJECT) bin
go build -v -o $@ ./$<
bin/$(PROJECT)-$(VERSION).%:
env GOARCH=$(subst .,,$(suffix $(subst .exe,,$@))) \
GOOS=$(subst .,,$(suffix $(basename $(subst .exe,,$@)))) \
CGO_ENABLED=0 \
go build $(LDFLAGS) -o $@ ./cmd/$(PROJECT)
releases/mtr-exporter-$(VERSION).%.zip: bin/$(PROJECT)-$(VERSION).%.exe
mkdir -p releases
zip -9 -j -r $@ README.md LICENSE $<
releases/$(PROJECT)-$(VERSION).%.tar.gz: bin/$(PROJECT)-$(VERSION).%
mkdir -p releases
tar -cf $(basename $@) README.md LICENSE && \
tar -rf $(basename $@) --strip-components 1 $< && \
gzip -9 $(basename $@)
bin:
mkdir $@
container-image:
env DOCKER_BUILDKIT=1 docker build \
--file Dockerfile \
--platform=$(CONTAINER_PLATFORM) \
--build-arg VERSION=$(VERSION) \
--tag $(CONTAINER_PLATFORM)-$(PROJECT):$(VERSION) .
######################################################
## dev related
deps-vendor:
go mod vendor
deps-cleanup:
go mod tidy
deps-ls:
go list -m -mod=readonly -f '{{if not .Indirect}}{{.}}{{end}}' all
deps-ls-updates:
go list -m -mod=readonly -f '{{if not .Indirect}}{{.}}{{end}}' -u all
compile-analysis: cmd/$(PROJECT)
go build -gcflags '-m' ./$^
reports: report-vuln report-gosec
reports: report-staticcheck report-vet report-ineffassign
reports: report-cyclo
reports: report-errcheck report-gocritic
reports: report-misspell
report-cyclo:
@echo '####################################################################'
gocyclo ./cmd/...
report-misspell:
@echo '####################################################################'
misspell .
report-ineffassign:
@echo '####################################################################'
ineffassign ./cmd/... ./pkg/...
report-vet:
@echo '####################################################################'
go vet ./cmd/... ./pkg/...
report-staticcheck:
@echo '####################################################################'
staticcheck ./cmd/... ./pkg/...
report-vuln:
@echo '####################################################################'
govulncheck ./cmd/... ./pkg/...
report-gosec:
@echo '####################################################################'
gosec ./cmd/... ./pkg/...
report-grype:
@echo '####################################################################'
grype .
report-errcheck:
@echo '####################################################################'
errcheck -ignorepkg fmt ./...
report-gocritic:
@echo '####################################################################'
gocritic check ./cmd/... ./pkg/...
fetch-report-tools:
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
go install github.com/client9/misspell/cmd/misspell@latest
go install github.com/gordonklaus/ineffassign@latest
go install honnef.co/go/tools/cmd/staticcheck@latest
go install golang.org/x/vuln/cmd/govulncheck@latest
go install github.com/securego/gosec/v2/cmd/gosec@latest
go install -v github.com/go-critic/go-critic/cmd/gocritic@latest
go install github.com/kisielk/errcheck@latest
fetch-report-tool-grype:
go install github.com/anchore/grype@latest
test:
go test -v ./cmd/$(PROJECT)
.PHONY: $(PROJECT) bin/$(PROJECT) binaries releases