-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
171 lines (135 loc) · 5.37 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# 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
# Setting SHELL to bash allows bash commands to be executed by recipes.
# Options are set to exit when a recipe line exits non-zero or a piped command fails.
SHELL = /usr/bin/env bash -o pipefail
.SHELLFLAGS = -ec
.PHONY: all
all: build
##@ 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 command 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%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
##@ Development
.PHONY: fmt
fmt: ## Run go fmt against code.
go fmt ./...
.PHONY: vet
vet: ## Run go vet against code.
go vet ./...
.PHONY: test
test: fmt vet ## Run tests.
go test ./...
.PHONY: lint
lint: golangci-lint ## Run golangci-lint linter & yamllint
$(GOLANGCI_LINT) run ./...
.PHONY: lint-fix
lint-fix: golangci-lint ## Run golangci-lint linter and perform fixes
$(GOLANGCI_LINT) run --fix ./...
.PHONY: mocks
mocks: mockery ## Generate mocks
$(MOCKERY)
##@ Build
.PHONY: build
build: fmt vet ## Build the code generator.
go build -o $(LOCALBIN)/cwc ./main.go
.PHONY: run
run: fmt vet check-env-vars ## Run the example app.
go run main.go
.PHONY: generate
generate: lang-gen ## Generate code.
go generate ./...
.PHONY: cross-compile
cross-compile: ## Cross compile the code.
GOOS=linux GOARCH=arm64 go build -o $(LOCALBIN)/cwc-linux-arm64 ./main.go
GOOS=linux GOARCH=amd64 go build -o $(LOCALBIN)/cwc-linux-amd64 ./main.go
GOOS=darwin GOARCH=arm64 go build -o $(LOCALBIN)/cwc-darwin-arm64 ./main.go
GOOS=darwin GOARCH=amd64 go build -o $(LOCALBIN)/cwc-darwin-amd64 ./main.go
GOOS=windows GOARCH=amd64 go build -o $(LOCALBIN)/cwc-windows-amd64.exe ./main.go
##@ Pre Deployment
.PHONY: security-scan
security-scan: gosec ## Run security scan on the codebase.
$(GOSEC) ./...
.PHONY: dependency-scan
dependency-scan: govulncheck ## Run dependency scan on the codebase.
$(GOVULNCHECK) ./...
##@ Deployment
##@ Dependencies
.PHONY: check-env-vars
check-env-vars:
@missing_vars=""; \
for var in AOAI_API_KEY AOAI_ENDPOINT AOAI_API_VERSION AOAI_MODEL_DEPLOYMENT; do \
if [ -z "$${!var}" ]; then \
missing_vars="$$missing_vars $$var"; \
fi \
done; \
if [ -n "$$missing_vars" ]; then \
echo "Error: the following env vars are not set:$$missing_vars"; \
exit 1; \
fi
.PHONY: lang-gen
lang-gen:
cd generator && go build -o $(LOCALBIN)/lang-gen lang-gen.go
## Location to install dependencies to
LOCALBIN ?= $(shell pwd)/bin
$(LOCALBIN):
mkdir -p $(LOCALBIN)
## Tool Binaries
TOOLKIT_TOOLS_GEN = $(LOCALBIN)/toolkit-tools-gen-$(TOOLKIT_TOOLS_GEN_VERSION)
GOLANGCI_LINT = $(LOCALBIN)/golangci-lint-$(GOLANGCI_LINT_VERSION)
GOSEC = $(LOCALBIN)/gosec-$(GOSEC_VERSION)
GOVULNCHECK = $(LOCALBIN)/govulncheck-$(GOVULNCHECK_VERSION)
MOCKERY = $(LOCALBIN)/mockery-$(MOCKERY_VERSION)
## Tool Versions
TOOLKIT_TOOLS_GEN_VERSION ?= latest
GOLANGCI_LINT_VERSION ?= v1.54
GOSEC_VERSION ?= latest
GOVULNCHECK_VERSION ?= latest
MOCKERY_VERSION ?= v2.42.1
.PHONY: golangci-lint
golangci-lint: $(GOLANGCI_LINT) ## Download golangci-lint locally if necessary.
$(GOLANGCI_LINT): $(LOCALBIN)
$(call go-install-tool,$(GOLANGCI_LINT),github.com/golangci/golangci-lint/cmd/golangci-lint,${GOLANGCI_LINT_VERSION})
.PHONY: gosec
gosec: $(GOSEC) ## Download golangci-lint locally if necessary.
$(GOSEC): $(LOCALBIN)
$(call go-install-tool,$(GOSEC),github.com/securego/gosec/v2/cmd/gosec,$(GOSEC_VERSION))
.PHONY: govulncheck
govulncheck: $(GOVULNCHECK) ## Download golangci-lint locally if necessary.
$(GOVULNCHECK): $(LOCALBIN)
$(call go-install-tool,$(GOVULNCHECK),golang.org/x/vuln/cmd/govulncheck,$(GOVULNCHECK_VERSION))
.PHONY: toolkit-tools-gen
toolkit-tools-gen: $(TOOLKIT_TOOLS_GEN) ## Download toolkit-tools-gen locally if necessary.
$(TOOLKIT_TOOLS_GEN): $(LOCALBIN)
$(call go-install-tool,$(TOOLKIT_TOOLS_GEN),github.com/intility/go-openai-toolkit/cmd/toolkit-tools-gen,$(TOOLKIT_TOOLS_GEN_VERSION))
.PHONY: mockery
mockery: $(MOCKERY) ## Download toolkit-tools-gen locally if necessary.
$(MOCKERY): $(LOCALBIN)
$(call go-install-tool,$(MOCKERY),github.com/vektra/mockery/v2,$(MOCKERY_VERSION))
# go-install-tool will 'go install' any package with custom target and name of binary, if it doesn't exist
# $1 - target path with name of binary (ideally with version)
# $2 - package url which can be installed
# $3 - specific version of package
define go-install-tool
@[ -f $(1) ] || { \
set -e; \
package=$(2)@$(3) ;\
echo "Downloading $${package}" ;\
GOBIN=$(LOCALBIN) go install $${package} ;\
mv "$$(echo "$(1)" | sed "s/-$(3)$$//")" $(1) ;\
}
endef