-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (33 loc) · 1.18 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
# Makefile
VERSION := 0.1.2
LDFLAGS ?= "-s -w -X github.com/chengshiwen/kubectl-resource-versions/cmd.Version=$(VERSION)"
GOBUILD_ENV = GO111MODULE=on CGO_ENABLED=0
GOX = go run github.com/mitchellh/gox
TARGETS := darwin/amd64 darwin/arm64 linux/amd64 windows/amd64
DIST_DIRS := find * -maxdepth 0 -type d -exec
.PHONY: build cross-build release test lint down tidy clean
all: build
build:
$(GOBUILD_ENV) go build -o bin/kubectl-resource-versions -a -ldflags $(LDFLAGS)
cross-build: clean
$(GOBUILD_ENV) $(GOX) -ldflags $(LDFLAGS) -parallel=4 -output="bin/kubectl-resource-versions-{{.OS}}-{{.Arch}}/kubectl-resource-versions" -osarch='$(TARGETS)' .
release: cross-build
( \
cd bin && \
$(DIST_DIRS) cp ../LICENSE {} \; && \
$(DIST_DIRS) cp ../README.md {} \; && \
$(DIST_DIRS) tar -zcf {}.tar.gz {} \; && \
$(DIST_DIRS) zip -r {}.zip {} \; && \
$(DIST_DIRS) rm -rf {} \; && \
sha256sum * > sha256sums.txt \
)
test:
go test -v ./...
lint:
golangci-lint run --enable=golint --disable=errcheck --disable=typecheck && goimports -l -w . && go fmt ./... && go vet ./...
down:
go list ./... && go mod verify
tidy:
rm -f go.sum && go mod tidy -v
clean:
rm -rf bin