-
Notifications
You must be signed in to change notification settings - Fork 10
/
Makefile
74 lines (59 loc) · 1.29 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
# go option
GO ?= go
TAGS :=
LDFLAGS := -s
GOFLAGS :=
ifdef GOBIN
BINDIR:=$(GOBIN)
else
BINDIR:=$(CURDIR)/bin
endif
ifeq ($(strip $(VERSION)),)
export VERSION := $(shell scripts/build/get_version.sh)
endif
.PHONY: all
all: clean-all test-all build-all
.PHONY: tools
tools:
@echo "================="
@echo "Installing dependancies"
go get -u github.com/golang/lint/golint
go get golang.org/x/tools/cmd/cover
go get github.com/tools/godep
go get github.com/spf13/cobra
.PHONY: clean
clean:
rm -rf build
.PHONY: clean-all
clean-all: clean
rm -rf bin
rm -rf debug
rm -rf build
rm -rf dist
.PHONY: test-all
test-all: test-unit
test-all: test-style
.PHONY: test-unit
test-unit:
@echo "================="
@echo "Running unit test"
go test $(go list ./... | grep -v vendor)
.PHONY: test-style
test-style:
@echo "================="
@echo "Running style checks"
scripts/validate-go.sh
.PHONY: coverage
coverage:
@echo "================="
@echo "Running tests with coverage tool"
./scripts/test-coverage.sh
.PHONY: build
build: clean
@echo "================="
./scripts/build/build.sh
.PHONY: build-all
build-all: clean-all
@echo "================="
@echo "Building helm-certgen plugin for all the platforms@ $(BINDIR)"
./scripts/build/build-all-platforms.sh