forked from kubernetes-sigs/cri-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
149 lines (120 loc) · 3.28 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
145
146
147
148
149
# Copyright 2017 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
MAKEFLAGS += --no-print-directory
GO ?= go
# test for go module support
ifeq ($(shell go help mod >/dev/null 2>&1 && echo true), true)
export GO_BUILD=GO111MODULE=on $(GO) build -mod=vendor
export GO_TEST=GO111MODULE=on $(GO) test -mod=vendor
else
export GO_BUILD=$(GO) build
export GO_TEST=$(GO) test
endif
GOOS := $(shell $(GO) env GOOS)
ifeq ($(GOOS),windows)
BIN_EXT := .exe
endif
PROJECT := github.com/kubernetes-sigs/cri-tools
BINDIR ?= /usr/local/bin
VERSION := $(shell git describe --tags --dirty --always)
VERSION := $(VERSION:v%=%)
GO_LDFLAGS := -X $(PROJECT)/pkg/version.Version=$(VERSION)
BUILDTAGS := selinux
BUILD_PATH := $(shell pwd)/build
BUILD_BIN_PATH := $(BUILD_PATH)/bin
define go-build
$(shell cd `pwd` && $(GO_BUILD) -o $(BUILD_BIN_PATH)/$(shell basename $(1)) $(1))
@echo > /dev/null
endef
GINKGO := $(BUILD_BIN_PATH)/ginkgo
GOLANGCI_LINT := $(BUILD_BIN_PATH)/golangci-lint
CRITEST := $(BUILD_BIN_PATH)/critest$(BIN_EXT)
CRICTL := $(BUILD_BIN_PATH)/crictl$(BIN_EXT)
all: binaries
help:
@echo "Usage: make <target>"
@echo
@echo " * 'install' - Install binaries to system locations."
@echo " * 'binaries' - Build critest and crictl."
@echo " * 'clean' - Clean artifacts."
critest:
@$(MAKE) -B $(CRITEST)
$(CRITEST):
CGO_ENABLED=0 $(GO_TEST) -c -o $@ \
-ldflags '$(GO_LDFLAGS)' \
-trimpath \
-tags '$(BUILDTAGS)' \
$(PROJECT)/cmd/critest
crictl:
@$(MAKE) -B $(CRICTL)
$(CRICTL):
CGO_ENABLED=0 $(GO_BUILD) -o $@ \
-ldflags '$(GO_LDFLAGS)' \
-trimpath \
-tags '$(BUILDTAGS)' \
$(PROJECT)/cmd/crictl
clean:
find . -name \*~ -delete
find . -name \#\* -delete
rm -rf $(BUILD_PATH)
binaries: critest crictl
install: $(CRITEST) $(CRICTL)
install -d $(DESTDIR)$(BINDIR)
install -m 755 $^ $(DESTDIR)$(BINDIR)/
lint: $(GOLANGCI_LINT)
$(GOLANGCI_LINT) run
./hack/repo-infra/verify/verify-boilerplate.sh
install.tools: $(GINKGO) $(GOLANGCI_LINT)
install.ginkgo: $(GINKGO)
install.lint: $(GOLANGCI_LINT)
$(GOLANGCI_LINT):
export \
VERSION=v1.40.1 \
URL=https://raw.githubusercontent.com/golangci/golangci-lint \
BINDIR=${BUILD_BIN_PATH} && \
curl -sfL $$URL/$$VERSION/install.sh | sh -s $$VERSION
$(GINKGO):
$(call go-build,./vendor/github.com/onsi/ginkgo/v2/ginkgo)
release:
hack/release.sh
release-notes:
hack/release-notes.sh
# needs to run as root to work
test-e2e: $(GINKGO)
$(GINKGO) $(TESTFLAGS) \
-r -p \
--randomizeAllSpecs \
--randomizeSuites \
--slowSpecThreshold 60 \
test
vendor:
export GO111MODULE=on GOSUMDB= && \
$(GO) mod tidy && \
$(GO) mod vendor && \
$(GO) mod verify
.PHONY: \
help \
critest \
crictl \
clean \
binaries \
install \
lint \
install.tools \
install.ginkgo \
install.lint \
release \
release-notes \
test-e2e \
vendor