-
Notifications
You must be signed in to change notification settings - Fork 21
/
Makefile
85 lines (73 loc) · 2.79 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
# Copyright 2020 The OpenEBS Authors. All rights reserved.
#
# 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.
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
GOBIN := $(or $(shell go env GOBIN 2>/dev/null), $(shell go env GOPATH 2>/dev/null)/bin)
PACKAGES = $(shell go list ./... | grep -v 'vendor\|pkg/generated')
#name openebsctl to be a kubectl-plugin
OPENEBSCTL=kubectl-openebs
.PHONY: all
all: license-check deps verify-deps openebsctl
# deps ensures fresh go.mod and go.sum.
.PHONY: deps
deps:
@echo "--> Tidying up submodules"
@go mod tidy
@echo "--> Veryfying submodules"
@go mod verify
# to verify the deps are in sync
.PHONY: verify-deps
verify-deps: deps
@if !(git diff --quiet HEAD -- go.sum go.mod); then \
echo "go module files are out of date, please commit the changes to go.mod and go.sum"; exit 1; \
fi
.PHONY: format
format:
@echo "--> Running go fmt"
@go fmt $(PACKAGES)
#.PHONY: test
#test:
# go test ./...
.PHONY: openebsctl
openebsctl:
@echo "----------------------------"
@echo "--> openebsctl "
@echo "----------------------------"
@PNAME=OPENEBSCTL CTLNAME=${OPENEBSCTL} sh -c "'$(PWD)/scripts/build.sh'"
@echo "--> Removing old directory..."
@sudo rm -rf /usr/local/bin/${OPENEBSCTL}
@echo "----------------------------"
@echo "copying new openebsctl"
@echo "----------------------------"
@sudo mkdir -p /usr/local/bin/
@sudo cp -a "$(PWD)/bin/OPENEBSCTL/${OPENEBSCTL}" /usr/local/bin/${OPENEBSCTL}
@echo "=> copied to /usr/local/bin"
.PHONY: golangci
golangci:
@echo "+ Installing golangci-lint"
@GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.41.1;
@echo "--> Running golangci-lint"
@golangci-lint run -set_exit_status $(PACKAGES)
@echo "Golangci-lint successful !"
@echo "--------------------------------"
.PHONY: license-check
license-check:
@echo "--> Checking license header..."
@licRes=$$(for file in $$(find . -type f -regex '.*\.sh\|.*\.go\|.*Docker.*\|.*\Makefile*' ! -path './vendor/*') ; do \
awk 'NR<=3' $$file | grep -Eq "(Copyright|generated|GENERATED)" || echo $$file; \
done); \
if [ -n "$${licRes}" ]; then \
echo "license header checking failed:"; echo "$${licRes}"; \
exit 1; \
fi
@echo "--> Done checking license."