forked from libopenstorage/stork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
144 lines (112 loc) · 4.64 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
STORK_IMG=$(DOCKER_HUB_REPO)/$(DOCKER_HUB_STORK_IMAGE):$(DOCKER_HUB_STORK_TAG)
CMD_EXECUTOR_IMG=$(DOCKER_HUB_REPO)/$(DOCKER_HUB_CMD_EXECUTOR_IMAGE):$(DOCKER_HUB_CMD_EXECUTOR_TAG)
STORK_TEST_IMG=$(DOCKER_HUB_REPO)/$(DOCKER_HUB_STORK_TEST_IMAGE):$(DOCKER_HUB_STORK_TEST_TAG)
ifndef PKGS
PKGS := $(shell go list ./... 2>&1 | grep -v 'github.com/libopenstorage/stork/vendor' | grep -v 'pkg/client/informers/externalversions' | grep -v versioned | grep -v 'pkg/apis/stork' | grep -v 'hack')
endif
GO_FILES := $(shell find . -name '*.go' | grep -v vendor | \
grep -v '\.pb\.go' | \
grep -v '\.pb\.gw\.go' | \
grep -v 'externalversions' | \
grep -v 'versioned' | \
grep -v 'generated' | \
grep -v 'hack')
ifeq ($(BUILD_TYPE),debug)
BUILDFLAGS += -gcflags "-N -l"
endif
RELEASE_VER := 2.7.0
BASE_DIR := $(shell git rev-parse --show-toplevel)
GIT_SHA := $(shell git rev-parse --short HEAD)
BIN :=$(BASE_DIR)/bin
VERSION = $(RELEASE_VER)-$(GIT_SHA)
LDFLAGS += "-s -w -X github.com/libopenstorage/stork/pkg/version.Version=$(VERSION)"
BUILD_OPTIONS := -ldflags=$(LDFLAGS)
.DEFAULT_GOAL=all
.PHONY: test clean vendor vendor-update
all: stork storkctl cmdexecutor pretest
vendor-tidy:
go mod tidy
vendor-update:
go mod download
vendor:
go mod vendor
lint:
GO111MODULE=off go get -u golang.org/x/lint/golint
for file in $(GO_FILES); do \
golint $${file}; \
if [ -n "$$(golint $${file})" ]; then \
exit 1; \
fi; \
done
vet:
go vet $(PKGS)
go vet -tags unittest $(PKGS)
go vet -tags integrationtest github.com/libopenstorage/stork/test/integration_test
staticcheck:
GOFLAGS="" go install honnef.co/go/tools/cmd/[email protected]
staticcheck $(PKGS)
staticcheck -tags integrationtest test/integration_test/*.go
staticcheck -tags unittest $(PKGS)
errcheck:
GO111MODULE=off go get -u github.com/kisielk/errcheck
errcheck -verbose -blank $(PKGS)
errcheck -verbose -blank -tags unittest $(PKGS)
errcheck -verbose -blank -tags integrationtest github.com/libopenstorage/stork/test/integration_test
check-fmt:
bash -c "diff -u <(echo -n) <(gofmt -l -d -s -e $(GO_FILES))"
do-fmt:
gofmt -s -w $(GO_FILES)
gocyclo:
GO111MODULE=off go get -u github.com/fzipp/gocyclo
gocyclo -over 15 $(GO_FILES)
pretest: check-fmt lint vet errcheck staticcheck
test:
echo "" > coverage.txt
for pkg in $(PKGS); do \
go test -v -tags unittest -coverprofile=profile.out -covermode=atomic $(BUILD_OPTIONS) $${pkg} || exit 1; \
if [ -f profile.out ]; then \
cat profile.out >> coverage.txt; \
rm profile.out; \
fi; \
done
integration-test:
@echo "Building stork integration tests"
@cd test/integration_test && GOOS=linux go test -tags integrationtest $(BUILD_OPTIONS) -v -c -o stork.test
integration-test-container:
@echo "Building container: docker build --tag $(STORK_TEST_IMG) -f Dockerfile ."
@cd test/integration_test && sudo docker build --tag $(STORK_TEST_IMG) -f Dockerfile .
integration-test-deploy:
sudo docker push $(STORK_TEST_IMG)
codegen:
@echo "Generating CRD"
(GOFLAGS="" hack/update-codegen.sh)
stork:
@echo "Building the stork binary"
@cd cmd/stork && CGO_ENABLED=0 GOOS=linux go build $(BUILD_OPTIONS) -o $(BIN)/stork
cmdexecutor:
@echo "Building command executor binary"
@cd cmd/cmdexecutor && GOOS=linux go build $(BUILD_OPTIONS) -o $(BIN)/cmdexecutor
storkctl:
@echo "Building storkctl"
@cd cmd/storkctl && CGO_ENABLED=0 GOOS=linux go build $(BUILD_OPTIONS) -o $(BIN)/linux/storkctl
@cd cmd/storkctl && CGO_ENABLED=0 GOOS=darwin go build $(BUILD_OPTIONS) -o $(BIN)/darwin/storkctl
@cd cmd/storkctl && CGO_ENABLED=0 GOOS=windows go build $(BUILD_OPTIONS) -o $(BIN)/windows/storkctl.exe
container: help
@echo "Building container: docker build --build-arg VERSION=$(DOCKER_HUB_STORK_TAG) --build-arg RELEASE=$(DOCKER_HUB_STORK_TAG) --tag $(STORK_IMG) -f Dockerfile . "
sudo docker build --build-arg VERSION=$(DOCKER_HUB_STORK_TAG) --build-arg RELEASE=$(DOCKER_HUB_STORK_TAG) --tag $(STORK_IMG) -f Dockerfile .
@echo "Building container: docker build --tag $(CMD_EXECUTOR_IMG) -f Dockerfile.cmdexecutor ."
sudo docker build --tag $(CMD_EXECUTOR_IMG) -f Dockerfile.cmdexecutor .
help:
@echo "Updating help file"
go-md2man -in help.md -out help.1
go-md2man -in help-cmdexecutor.md -out help-cmdexecutor.1
deploy:
sudo docker push $(STORK_IMG)
sudo docker push $(CMD_EXECUTOR_IMG)
clean:
-rm -rf $(BIN)
@echo "Deleting image "$(STORK_IMG)
-sudo docker rmi -f $(STORK_IMG)
@echo "Deleting image "$(CMD_EXECUTOR_IMG)
-sudo docker rmi -f $(CMD_EXECUTOR_IMG)
go clean -i $(PKGS)