-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
106 lines (91 loc) · 3.1 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
PWD := $(shell pwd)
LOCAL_BIN ?= $(PWD)/bin
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
ENVTEST_K8S_VERSION = 1.29.x
# Keep an existing GOPATH, make a private one if it is undefined
GOPATH_DEFAULT := $(PWD)/.go
export GOPATH ?= $(GOPATH_DEFAULT)
GOBIN_DEFAULT := $(GOPATH)/bin
export GOBIN ?= $(GOBIN_DEFAULT)
export PATH := $(LOCAL_BIN):$(GOBIN):$(PATH)
include build/common/Makefile.common.mk
############################################################
# clean section
############################################################
.PHONY: clean
clean:
-rm bin/*
-rm -r vendor/
-rm build/_output/*
-rm kubeconfig_$(CLUSTER_NAME)_e2e
kind delete cluster --name test-$(CLUSTER_NAME)
############################################################
# build section
############################################################
BUILD_DIR := $(PWD)/build/_output
BINARY_DIR ?= $(PWD)/cmd/*
BINARY_NAME := policytools
CONTAINER_ENGINE ?= podman
# Parse the version using git, with fallbacks as follows:
# - git describe (i.e. vX.Y.Z-<extra_commits>-<sha>)
# - <branch>-<sha>
# - <sha>-dev
# - Go BuildInfo version
# - Unversioned binary
GIT_VERSION := $(shell git describe --dirty 2>/dev/null)
ifndef GIT_VERSION
GIT_BRANCH := $(shell git branch --show-current)
GIT_SHA := $(shell git rev-parse --short HEAD)
ifdef GIT_BRANCH
GIT_VERSION := $(GIT_BRANCH)-$(GIT_SHA)
else ifdef GIT_SHA
GIT_VERSION := $(GIT_SHA)-dev
endif
endif
GO_LDFLAGS ?= -X 'github.com/stolostron/policy-cli/internal.version=$(GIT_VERSION)'
.PHONY: build-all
build-all:
# Building binaries with output to $(subst $(PWD),.,$(BUILD_DIR))
@for binary in $(BINARY_DIR); do \
echo "Building $$(basename $${binary}) ...";\
go build -ldflags="$(GO_LDFLAGS)" -o $(BUILD_DIR)/$$(basename $${binary}) $${binary}; \
done
.PHONY: build
build: BINARY_DIR = ./cmd/$(BINARY_NAME)
build: build-all
.PHONY: build-release
build-release:
@if [ $(shell git status --porcelain | wc -l) -gt 0 ]; then \
echo "There are local modifications in the repo" > /dev/stderr; \
exit 1; \
fi
@for OS in linux darwin windows; do for ARCH in amd64 arm64; do \
echo "# Building $${OS}-$${ARCH}-$(BINARY_NAME)"; \
GOOS=$${OS} GOARCH=$${ARCH} CGO_ENABLED=0 \
go build -mod=readonly -ldflags="$(GO_LDFLAGS)" -o $(BUILD_DIR)/$${OS}-$${ARCH}-$(BINARY_NAME) ./cmd/$(BINARY_NAME) \
|| exit 1; \
done; done
# Adding .exe extension to Windows binaries
@for FILE in $$(ls -1 $(BUILD_DIR)/windows-* | grep -v ".exe$$"); do \
mv $${FILE} $${FILE}.exe \
|| exit 1; \
done
.PHONY: build-oc-plugin
build-oc-plugin: build
# Installing oc plugin
cp $(BUILD_DIR)/$(BINARY_NAME) /usr/local/bin/oc-$(BINARY_NAME)
############################################################
# lint section
############################################################
.PHONY: fmt
fmt:
.PHONY: lint
lint:
############################################################
# test section
############################################################
.PHONY: gosec-scan
gosec-scan:
.PHONY: validate-readme
validate-readme:
./test/test.sh --validate-readme