forked from redpanda-data/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
110 lines (82 loc) · 3.31 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
.PHONY: all serverless deps docker docker-cgo clean docs test test-race test-integration fmt lint install deploy-docs
TAGS =
INSTALL_DIR = $(GOPATH)/bin
WEBSITE_DIR = ./website
DEST_DIR = ./target
PATHINSTBIN = $(DEST_DIR)/bin
PATHINSTTOOLS = $(DEST_DIR)/tools
PATHINSTSERVERLESS = $(DEST_DIR)/serverless
PATHINSTDOCKER = $(DEST_DIR)/docker
VERSION := $(shell git describe --tags || echo "v0.0.0")
VER_CUT := $(shell echo $(VERSION) | cut -c2-)
VER_MAJOR := $(shell echo $(VER_CUT) | cut -f1 -d.)
VER_MINOR := $(shell echo $(VER_CUT) | cut -f2 -d.)
VER_PATCH := $(shell echo $(VER_CUT) | cut -f3 -d.)
VER_RC := $(shell echo $(VER_PATCH) | cut -f2 -d-)
DATE := $(shell date +"%Y-%m-%dT%H:%M:%SZ")
VER_FLAGS = -X github.com/Jeffail/benthos/v3/lib/service.Version=$(VERSION) \
-X github.com/Jeffail/benthos/v3/lib/service.DateBuilt=$(DATE)
LD_FLAGS =
GO_FLAGS =
DOCS_FLAGS =
APPS = benthos
all: $(APPS)
install: $(APPS)
@cp $(PATHINSTBIN)/* $(INSTALL_DIR)/
deps:
@go mod tidy
@go mod vendor
SOURCE_FILES = $(shell find lib internal public cmd -type f -name "*.go")
TEMPLATE_FILES = $(shell find template -path template/test -prune -o -type f -name "*.yaml")
$(PATHINSTBIN)/%: $(SOURCE_FILES) $(TEMPLATE_FILES)
@go build $(GO_FLAGS) -tags "$(TAGS)" -ldflags "$(LD_FLAGS) $(VER_FLAGS)" -o $@ ./cmd/$*
$(APPS): %: $(PATHINSTBIN)/%
TOOLS = benthos_docs_gen
tools: $(TOOLS)
$(PATHINSTTOOLS)/%: $(SOURCE_FILES) $(TEMPLATE_FILES)
@go build $(GO_FLAGS) -tags "$(TAGS)" -ldflags "$(LD_FLAGS) $(VER_FLAGS)" -o $@ ./cmd/tools/$*
$(TOOLS): %: $(PATHINSTTOOLS)/%
SERVERLESS = benthos-lambda
serverless: $(SERVERLESS)
$(PATHINSTSERVERLESS)/%: $(SOURCE_FILES) $(TEMPLATE_FILES)
@CGO_ENABLED=0 GOOS=linux GOARCH=amd64 \
go build $(GO_FLAGS) -tags "$(TAGS)" -ldflags "$(LD_FLAGS) $(VER_FLAGS)" -o $@ ./cmd/serverless/$*
@zip -m -j [email protected] $@
$(SERVERLESS): %: $(PATHINSTSERVERLESS)/%
docker-tags:
@echo "latest,$(VER_CUT),$(VER_MAJOR).$(VER_MINOR),$(VER_MAJOR)" > .tags
docker-rc-tags:
@echo "latest,$(VER_CUT),$(VER_MAJOR)-$(VER_RC)" > .tags
docker-cgo-tags:
@echo "latest-cgo,$(VER_CUT)-cgo,$(VER_MAJOR).$(VER_MINOR)-cgo,$(VER_MAJOR)-cgo" > .tags
docker: deps
@docker build -f ./resources/docker/Dockerfile . -t jeffail/benthos:$(VER_CUT)
@docker tag jeffail/benthos:$(VER_CUT) jeffail/benthos:latest
docker-cgo: deps
@docker build -f ./resources/docker/Dockerfile.cgo . -t jeffail/benthos:$(VER_CUT)-cgo
@docker tag jeffail/benthos:$(VER_CUT)-cgo jeffail/benthos:latest-cgo
fmt:
@go list -f {{.Dir}} ./... | xargs -I{} gofmt -w -s {}
@go mod tidy
lint:
@go vet $(GO_FLAGS) ./...
@golangci-lint run --timeout 5m cmd/... lib/... internal/... public/...
test: $(APPS)
@go test $(GO_FLAGS) -timeout 3m -race ./...
@$(PATHINSTBIN)/benthos test ./config/test/...
test-integration:
@go test $(GO_FLAGS) -run "^Test.*Integration$$" -timeout 3m ./...
clean:
rm -rf $(PATHINSTBIN)
rm -rf $(DEST_DIR)/dist
rm -rf $(DEST_DIR)/tools
rm -rf $(DEST_DIR)/serverless
rm -rf $(PATHINSTDOCKER)
docs: $(APPS) $(TOOLS)
@$(PATHINSTTOOLS)/benthos_docs_gen $(DOCS_FLAGS)
@$(PATHINSTBIN)/benthos lint ./config/... \
$(WEBSITE_DIR)/cookbooks/*.md \
$(WEBSITE_DIR)/docs/components/**/about.md \
$(WEBSITE_DIR)/docs/guides/*.md \
$(WEBSITE_DIR)/docs/guides/**/*.md \
$(WEBSITE_DIR)/docs/configuration/*.md