forked from k8snetworkplumbingwg/ib-sriov-cni
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
195 lines (161 loc) · 6.29 KB
/
Makefile
File metadata and controls
195 lines (161 loc) · 6.29 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# Package related
BINARY_NAME=ib-sriov
PACKAGE=ib-sriov-cni
BINDIR=$(CURDIR)/bin
BUILDDIR=$(CURDIR)/build
BASE=$(CURDIR)
CNI_GOFILES=$(shell find . -name *.go -path "./cmd/$(PACKAGE)/*" -o -path "./pkg/*" | grep -vE "(_test.go)")
THIN_ENTRYPOINT_GOFILES=$(shell find . -name *.go -path "./cmd/thin_entrypoint/*" | grep -vE "(_test.go)")
PKGS=$(or $(PKG),$(shell $(GO) list ./...))
TESTPKGS = $(shell $(GO) list -f '{{ if or .TestGoFiles .XTestGoFiles }}{{ .ImportPath }}{{ end }}' $(PKGS))
# Version
VERSION?=master
DATE=`date -Iseconds`
COMMIT?=`git rev-parse --verify HEAD`
LDFLAGS="-X main.version=$(VERSION) -X main.commit=$(COMMIT) -X main.date=$(DATE)"
# Docker
IMAGE_BUILDER?=docker
IMAGEDIR=$(BASE)/images
DOCKERFILE?=$(CURDIR)/Dockerfile
TAG?=k8snetworkplumbingwg/ib-sriov-cni
IMAGE_BUILD_OPTS?=
# Accept proxy settings for docker
# To pass proxy for Docker invoke it as 'make image HTTP_POXY=http://192.168.0.1:8080'
DOCKERARGS=
ifdef HTTP_PROXY
DOCKERARGS += --build-arg http_proxy=$(HTTP_PROXY)
endif
ifdef HTTPS_PROXY
DOCKERARGS += --build-arg https_proxy=$(HTTPS_PROXY)
endif
IMAGE_BUILD_OPTS += $(DOCKERARGS)
# Go tools
GO = go
Q = $(if $(filter 1,$V),,@)
# Go settings
GO_BUILD_OPTS ?=CGO_ENABLED=0
GO_LDFLAGS ?=
GO_FLAGS ?=
GO_TAGS ?=-tags no_openssl
export GOPATH?=$(shell go env GOPATH)
# License targets
include make/license.mk
.PHONY: all
all: lint build test-coverage
$(BINDIR):
@mkdir -p $@
$(BUILDDIR): ; $(info Creating build directory...)
@mkdir -p $@
define go-build
@cd $(1) && $(GO_BUILD_OPTS) $(GO) build -o $(2) $(GO_TAGS) -ldflags $(LDFLAGS) -v
endef
build: $(BUILDDIR)/$(BINARY_NAME) $(BUILDDIR)/thin_entrypoint ; $(info Building $(BINARY_NAME) and thin_entrypoint...) ## Build executable files
$(info Done!)
$(BUILDDIR)/$(BINARY_NAME): $(CNI_GOFILES) | $(BUILDDIR) ; $(info building $(BINARY_NAME)...)
$(call go-build,$(BASE)/cmd/$(PACKAGE),$(BUILDDIR)/$(BINARY_NAME))
$(BUILDDIR)/thin_entrypoint: $(THIN_ENTRYPOINT_GOFILES) | $(BUILDDIR) ; $(info building thin_entrypoint...)
$(call go-build,$(BASE)/cmd/thin_entrypoint,$(BUILDDIR)/thin_entrypoint)
# Tools
GOLANGCI_LINT = $(BINDIR)/golangci-lint
# golangci-lint version should be updated periodically
# we keep it fixed to avoid it from unexpectedly failing on the project
# in case of a version bump
GOLANGCI_LINT_VER = v2.7.2
TIMEOUT = 15
export GOLANGCI_LINT_CACHE = $(BUILDDIR)/.cache
$(GOLANGCI_LINT): | $(BINDIR) ; $(info installing golangci-lint...)
$(call go-install-tool,$(GOLANGCI_LINT),github.com/golangci/golangci-lint/v2/cmd/golangci-lint@$(GOLANGCI_LINT_VER))
GOVERALLS = $(BINDIR)/goveralls
$(GOVERALLS): | $(BINDIR) ; $(info installing goveralls...)
$(call go-install-tool,$(GOVERALLS),github.com/mattn/goveralls@latest)
HADOLINT_TOOL = $(BINDIR)/hadolint
$(HADOLINT_TOOL): | $(BINDIR) ; $(info installing hadolint...)
$(call wget-install-tool,$(HADOLINT_TOOL),"https://github.com/hadolint/hadolint/releases/download/v2.12.1-beta/hadolint-Linux-x86_64")
SHELLCHECK_TOOL = $(BINDIR)/shellcheck
SHELLCHECK_VERSION := v0.11.0
SHELLCHECK_OS := $(shell uname -s | tr A-Z a-z)
SHELLCHECK_ARCH := $(shell uname -m)
ifeq ($(SHELLCHECK_ARCH),arm64)
SHELLCHECK_ARCH := aarch64
endif
SHELLCHECK_URL := https://github.com/koalaman/shellcheck/releases/download/$(SHELLCHECK_VERSION)/shellcheck-$(SHELLCHECK_VERSION).$(SHELLCHECK_OS).$(SHELLCHECK_ARCH).tar.xz
$(SHELLCHECK_TOOL): | $(BASE) ; $(info installing shellcheck...)
$(call install-shellcheck,$(BINDIR),$(SHELLCHECK_URL))
# Tests
.PHONY: lint
lint: | $(GOLANGCI_LINT) ; $(info running golangci-lint...) ## Run golangci-lint
$Q $(GOLANGCI_LINT) run --timeout=5m
TEST_TARGETS := test-default test-bench test-short test-verbose test-race
.PHONY: $(TEST_TARGETS) test tests
test-bench: ARGS=-run=__absolutelynothing__ -bench=. ## Run benchmarks
test-short: ARGS=-short ## Run only short tests
test-verbose: ARGS=-v ## Run tests in verbose mode with coverage reporting
test-race: ARGS=-race ## Run tests with race detector
$(TEST_TARGETS): NAME=$(MAKECMDGOALS:test-%=%)
$(TEST_TARGETS): test
test: ; $(info running $(NAME:%=% )tests...) @ ## Run tests
$Q $(GO) test -timeout $(TIMEOUT)s $(ARGS) $(TESTPKGS)
COVERAGE_MODE = count
COVER_PROFILE = ib-sriov-cni.cover
test-coverage: | $(GOVERALLS) ; $(info running coverage tests...) ## Run coverage tests
$Q $(GO) test -covermode=$(COVERAGE_MODE) -coverprofile=$(COVER_PROFILE) ./...
.PHONY: upload-coverage
upload-coverage: | $(GOVERALLS) ; $(info uploading coverage results...) ## Upload coverage report
$(GOVERALLS) -coverprofile=$(COVER_PROFILE) -service=github
.PHONY: hadolint
hadolint: $(HADOLINT_TOOL); $(info running hadolint...) ## Run hadolint
$Q $(HADOLINT_TOOL) Dockerfile
.PHONY: shellcheck
shellcheck: $(SHELLCHECK_TOOL); $(info running shellcheck...) ## Run shellcheck
$Q $(SHELLCHECK_TOOL) images/*.sh
# Container image
.PHONY: image
image: ; $(info Building Docker image...) ## Build conatiner image
@$(IMAGE_BUILDER) build -t $(TAG) -f $(DOCKERFILE) $(CURDIR) $(IMAGE_BUILD_OPTS)
# Dependency management
.PHONY: deps-update
deps-update: ; $(info updating dependencies...) ## update dependencies by running go mod tidy
go mod tidy
.PHONY: test-image
test-image: image ## Test image
$Q $(BASE)/images/image_test.sh $(IMAGE_BUILDER) $(TAG)
tests: lint hadolint shellcheck test test-image ## Run lint, hadolint, shellcheck, unit test and image test
# Misc
.PHONY: clean
clean: ; $(info Cleaning...) ## Cleanup everything
@$(GO) clean -modcache
@rm -rf $(BINDIR)
@rm -rf $(BUILDDIR)
@rm -rf test
.PHONY: help
help: ## Show this message
@grep -E '^[ a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
define wget-install-tool
@[ -f $(1) ] || { \
echo "Downloading $(2)" ;\
mkdir -p $(BINDIR);\
wget -O $(1) $(2);\
chmod +x $(1) ;\
}
endef
define install-shellcheck
@[ -f $(1) ] || { \
echo "Downloading $(2)" ;\
mkdir -p $(1);\
wget -O $(1)/shellcheck.tar.xz $(2);\
tar xf $(1)/shellcheck.tar.xz -C $(1);\
mv $(1)/shellcheck*/shellcheck $(1)/shellcheck;\
chmod +x $(1)/shellcheck;\
rm -r $(1)/shellcheck*/;\
rm $(1)/shellcheck.tar.xz;\
}
endef
# go-install-tool will 'go install' any package $2 and install it to $1.
define go-install-tool
@[ -f $(1) ] || { \
set -e ;\
echo "Downloading $(2)" ;\
GOBIN=$(BINDIR) go install -mod=mod $(2) ;\
}
endef