-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
71 lines (55 loc) · 1.64 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
# Set Shell to bash, otherwise some targets fail with dash/zsh etc.
SHELL := /bin/bash
# Disable built-in rules
MAKEFLAGS += --no-builtin-rules
MAKEFLAGS += --no-builtin-variables
.SUFFIXES:
.SECONDARY:
.DEFAULT_GOAL := help
PROJECT_ROOT_DIR = .
include Makefile.vars.mk
.PHONY: help
help: ## Show this help
@grep -E -h '\s##\s' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
all: build ## Invokes the build target
.PHONY: test
test: ## Run tests
go test ./... -coverprofile cover.tmp.out
cat cover.tmp.out | grep -v "zz_generated.deepcopy.go" > cover.out
.PHONY: test-e2e
test-e2e: build ## Run e2e tests
(cd e2e && ./interactive.tcl)
(cd e2e && ./non-interactive.tcl)
.PHONY: build
build: generate fmt vet $(BIN_FILENAME) ## Build manager binary
.PHONY: generate
generate: ## Generate manifests e.g. CRD, RBAC etc.
go generate ./...
.PHONY: fmt
fmt: ## Run go fmt against code
go fmt ./...
.PHONY: vet
vet: ## Run go vet against code
go vet ./...
.PHONY: lint
lint: fmt vet generate ## All-in-one linting
@echo 'Check for uncommitted changes ...'
git diff --exit-code
.PHONY: build.docker
build.docker: $(BIN_FILENAME) ## Build the docker image
docker build . \
--tag $(GHCR_IMG)
clean: ## Cleans up the generated resources
rm -rf dist/ cover.out $(BIN_FILENAME) || true
.PHONY: run
run: generate fmt vet ## Run the binary from your host.
go run ./main.go
###
### Assets
###
# Build the binary without running generators
.PHONY: $(BIN_FILENAME)
$(BIN_FILENAME): export CGO_ENABLED = 0
$(BIN_FILENAME):
@echo "GOOS=$$(go env GOOS) GOARCH=$$(go env GOARCH)"
go build -o $(BIN_FILENAME)