-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
110 lines (82 loc) · 3.71 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
# SPDX-FileCopyrightText: 2021 SAP SE or an SAP affiliate company and Gardener contributors
#
# SPDX-License-Identifier: Apache-2.0
REPO_ROOT := $(shell git rev-parse --show-toplevel)
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))
GOBIN=$(shell go env GOPATH)/bin
else
GOBIN=$(shell go env GOBIN)
endif
export LD_FLAGS=$(shell ./hack/get-build-ld-flags.sh)
#########################################
# Tools #
#########################################
TOOLS_DIR := hack/tools
include hack/tools.mk
##@ General
# The help target prints out all targets with their descriptions organized
# beneath their categories. The categories are represented by '##@' and the
# target descriptions by '##'. The awk commands is responsible for reading the
# entire set of makefiles included in this invocation, looking for lines of the
# file as xyz: ## something, and then pretty-format the target and help. Then,
# if there's a line with ##@ something, that gets pretty-printed as a category.
# More info on the usage of ANSI control characters for terminal formatting:
# https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters
# More info on the awk command:
# http://linuxcommand.org/lc3_adv_awk.php
.PHONY: help
help: ## Display this help.
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-13s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
##@ Development
.PHONY: tidy
tidy: ## Clean up go.mod and go.sum by removing unused dependencies.
go mod tidy
.PHONY: clean
clean: ## Remove generated files and clean up directories.
@hack/clean.sh ./cmd/... ./internal/...
.PHONY: generate
generate: $(MOCKGEN) fmt ## Run go generate
@hack/generate.sh ./cmd/... ./internal/...
.PHONY: fmt
fmt: ## Run go fmt against code.
go fmt ./...
.PHONY: check-generate
check-generate: ## Verify if code generation is up-to-date by running generate and checking for changes.
@hack/check-generate.sh $(REPO_ROOT)
.PHONY: lint
lint: ## Run golangci-lint against code.
@./hack/golangci-lint.sh
.PHONY: sast
sast: $(GOSEC) ## Run gosec against code
@./hack/sast.sh
.PHONY: sast-report
sast-report: $(GOSEC) ## Run gosec against code and export report to SARIF.
@./hack/sast.sh --gosec-report true
.PHONY: test
test: fmt lint go-test sast ## Run tests.
.PHONY: go-test
go-test: ## Run go tests.
@./hack/test-integration.sh
.PHONY: verify ## Run basic verification including linting, tests, static analysis and check if the generated markdown is up-to-date.
verify: lint go-test sast
.PHONY: verify-extended ## Run extended verification including code generation check, linting, tests, and detailed static analysis report.
verify-extended: check-generate lint go-test sast-report
##@ Build
.PHONY: build
build: build-darwin-amd64 build-darwin-arm64 build-linux-amd64 build-linux-arm64 build-windows-amd64 ## Build gardenlogin binary for darwin, linux and windows.
.PHONY: build-linux-amd64
build-linux-amd64: ## Build gardenlogin binary for Linux on Intel processors.
@./hack/build-linux-amd64.sh
.PHONY: build-linux-arm64
build-linux-arm64: ## Build gardenlogin binary for Linux on ARM processors.
@./hack/build-linux-arm64.sh
.PHONY: build-darwin-amd64
build-darwin-amd64: ## Build gardenlogin binary for darwin on Intel processors.
@./hack/build-darwin-amd64.sh
.PHONY: build-darwin-arm64
build-darwin-arm64: ## Build gardenlogin binary for darwin on Apple Silicon processors.
@./hack/build-darwin-arm64.sh
.PHONY: build-windows-amd64
build-windows-amd64: ## Build gardenlogin binary for Windows on Intel processors.
@./hack/build-windows-amd64.sh