-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile
94 lines (70 loc) · 2.61 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
MODULE_NAME=otelsql
VENDOR_DIR = vendor
GOLANGCI_LINT_VERSION ?= v1.60.1
GO ?= go
GOLANGCI_LINT ?= $(shell go env GOPATH)/bin/golangci-lint-$(GOLANGCI_LINT_VERSION)
GHERKIN_LINT ?= gherkin-lint
TEST_FLAGS ?= -race
COMPATIBILITY_TEST ?= postgres
GITHUB_OUTPUT ?= /dev/null
ifeq ($(GOARCH), 386)
TEST_FLAGS =
endif
goModules := $(shell find . -name 'go.mod' | xargs dirname)
tidyGoModules := $(subst -.,-module,$(subst /,-,$(addprefix tidy-,$(goModules))))
updateGoModules := $(subst -.,-module,$(subst /,-,$(addprefix update-,$(goModules))))
lintGoModules := $(subst -.,-module,$(subst /,-,$(addprefix lint-,$(goModules))))
compatibilityTests := $(addprefix test-compatibility-,$(filter-out suite,$(subst ./,,$(shell cd tests;find . -name 'go.mod' | xargs dirname))))
.PHONY: help
help:
@make -qpRr | egrep -e '^[a-z].*:$$' | sed -e 's~:~~g' | sort
.PHONY: $(VENDOR_DIR)
$(VENDOR_DIR):
@mkdir -p $(VENDOR_DIR)
@$(GO) mod tidy
@$(GO) mod vendor
.PHONY: $(lintGoModules)
$(lintGoModules): $(GOLANGCI_LINT)
$(eval GO_MODULE := "$(subst lint/module,.,$(subst -,/,$(subst lint-module-,,$@)))")
@echo ">> module: $(GO_MODULE)"
@cd "$(GO_MODULE)"; $(GOLANGCI_LINT) run
.PHONY: lint
lint: $(lintGoModules)
.PHONY: $(tidyGoModules)
$(tidyGoModules):
$(eval GO_MODULE := "$(subst tidy/module,.,$(subst -,/,$(subst tidy-module-,,$@)))")
@echo ">> module: $(GO_MODULE)"
@cd "$(GO_MODULE)"; $(GO) mod tidy
.PHONY: tidy
tidy: $(tidyGoModules)
.PHONY: $(updateGoModules)
$(updateGoModules):
$(eval GO_MODULE := "$(subst update/module,.,$(subst -,/,$(subst update-module-,,$@)))")
@echo ">> module: $(GO_MODULE)"
@cd "$(GO_MODULE)"; $(GO) get -u ./...
.PHONY: update
update: $(updateGoModules)
## Run unit tests
.PHONY: test-unit
test-unit:
@echo ">> unit test"
@$(GO) test -coverprofile=unit.coverprofile -covermode=atomic $(TEST_FLAGS) ./...
@echo
.PHONY: $(compatibilityTests)
$(compatibilityTests):
$(eval COMPATIBILITY_TEST := "$(subst test-compatibility-,,$@)")
@echo ">> compatibility test: $(COMPATIBILITY_TEST)"
@cd "tests/$(COMPATIBILITY_TEST)"; $(GO) test -v $(TEST_FLAGS) ./...
@echo
.PHONY: test-compatibility
test-compatibility: $(compatibilityTests)
.PHONY: test
test: test-unit test-compatibility
.PHONY: $(GITHUB_OUTPUT)
$(GITHUB_OUTPUT):
@echo "MODULE_NAME=$(MODULE_NAME)" >> "$@"
@echo "GOLANGCI_LINT_VERSION=$(GOLANGCI_LINT_VERSION)" >> "$@"
$(GOLANGCI_LINT):
@echo "$(OK_COLOR)==> Installing golangci-lint $(GOLANGCI_LINT_VERSION)$(NO_COLOR)"; \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./bin "$(GOLANGCI_LINT_VERSION)"
@mv ./bin/golangci-lint $(GOLANGCI_LINT)