-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
110 lines (80 loc) · 3.04 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
GO_TEST = go run gotest.tools/gotestsum --format pkgname
LICENCES_IGNORE_LIST = $(shell cat licences/licences-ignore-list.txt)
ifndef $(GOPATH)
GOPATH=$(shell go env GOPATH)
export GOPATH
endif
ARTIFACT_NAME = external-dns-bfc-webhook
# logging
LOG_LEVEL = debug
LOG_ENVIRONMENT = production
LOG_FORMAT = auto
REGISTRY ?= localhost:5001
IMAGE_NAME ?= external-dns-bfc-webhook
IMAGE_TAG ?= latest
IMAGE = $(REGISTRY)/$(IMAGE_NAME):$(IMAGE_TAG)
##@ General
.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%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
show: ## Show variables
@echo "GOPATH: $(GOPATH)"
@echo "ARTIFACT_NAME: $(ARTIFACT_NAME)"
@echo "REGISTRY: $(REGISTRY)"
@echo "IMAGE_NAME: $(IMAGE_NAME)"
@echo "IMAGE_TAG: $(IMAGE_TAG)"
@echo "IMAGE: $(IMAGE)"
##@ Code analysis
.PHONY: fmt
fmt: ## Run gofumpt against code.
go run mvdan.cc/gofumpt -w .
.PHONY: vet
vet: ## Run go vet against code.
go vet ./...
.PHONY: lint
lint: ## Run golangci-lint against code.
mkdir -p build/reports
go run github.com/golangci/golangci-lint/cmd/golangci-lint run --timeout 2m
.PHONY: static-analysis
static-analysis: lint vet ## Run static analysis against code.
##@ GO
.PHONY: clean
clean: ## Clean the build directory
rm -rf ./dist
rm -rf ./build
rm -rf ./vendor
.PHONY: build
build: ## Build the binary
CGO_ENABLED=0 go build -o build/bin/$(ARTIFACT_NAME) ./cmd/webhook
.PHONY: run
run:build ## Run the binary on local machine
LOG_LEVEL=$(LOG_LEVEL) LOG_ENVIRONMENT=$(LOG_ENVIRONMENT) LOG_FORMAT=$(LOG_FORMAT) build/bin/external-dns-bfc-webhook
##@ Docker
.PHONY: docker-build
docker-build: build ## Build the docker image
docker build ./ -f localbuild.Dockerfile -t $(IMAGE)
.PHONY: docker-push
docker-push: ## Push the docker image
docker push $(IMAGE)
##@ Test
.PHONY: unit-test
unit-test: ## Run unit tests
mkdir -p build/reports
$(GO_TEST) --junitfile build/reports/unit-test.xml -- -race ./... -count=1 -short -cover -coverprofile build/reports/unit-test-coverage.out
##@ Release
.PHONY: release-check
release-check: ## Check if the release will work
GITHUB_SERVER_URL=github.com GITHUB_REPOSITORY=ionos-cloud/external-dns-bfc-webhook REGISTRY=$(REGISTRY) IMAGE_NAME=$(IMAGE_NAME) goreleaser release --snapshot --clean --skip-publish
##@ License
.PHONY: license-check
license-check: ## Run go-licenses check against code.
go install github.com/google/go-licenses
mkdir -p build/reports
echo "$(LICENCES_IGNORE_LIST)"
$(GOPATH)/bin/go-licenses check --include_tests --ignore "$(LICENCES_IGNORE_LIST)" ./...
.PHONY: license-report
license-report: ## Create licenses report against code.
go install github.com/google/go-licenses
mkdir -p build/reports/licenses
$(GOPATH)/bin/go-licenses report --include_tests --ignore "$(LICENCES_IGNORE_LIST)" ./... >build/reports/licenses/licenses-list.csv
cat licences/licenses-manual-list.csv >> build/reports/licenses/licenses-list.csv