-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
117 lines (95 loc) · 3.89 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
SERVICES := $(shell find ./cmd/* -type d -exec basename {} \;)
BUILD_SERVICES = $(addprefix build-,$(SERVICES))
DOCKER_SERVICES = $(addprefix docker-,$(SERVICES))
BUILD_DIR ?= ./build
LD_FLAGS ?= -w -s
CGO_ENABLED ?= 0
GOPATH ?= $(shell go env GOPATH)
GOARCH ?= $(shell go env GOARCH)
GOOS = linux
ORG_NAME = netboxlabs
REPO_NAME = diode
ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
VERSION_DIR = $(ROOT_DIR)/version
DIODE_VERSION := $(shell cat $(VERSION_DIR)/BUILD_VERSION.txt)
COMMIT_SHA := $(shell git rev-parse --short HEAD)
VALIDATE_PKG_DIR := $(shell find $(GOPATH)/pkg/mod/github.com/envoyproxy/protoc-gen-validate@* -type d -prune | sort | tail -1)
ifneq ($(shell docker compose version 2>/dev/null),)
DOCKER_COMPOSE := docker compose
else
DOCKER_COMPOSE := docker-compose
endif
.PHONY: install-dev-tools
install-dev-tools:
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
@go install github.com/vektra/mockery/v2@latest
@go install github.com/sqlc-dev/sqlc/cmd/sqlc@latest
@go install github.com/mfridman/tparse@latest
.PHONY: deps
deps:
@go mod tidy
.PHONY: lint
lint:
@golangci-lint run ./... --config ../.github/golangci.yaml
.PHONY: fix-lint
fix-lint:
@golangci-lint run ./... --config ../.github/golangci.yaml --fix
.PHONY: test
test:
@go test -race ./...
.PHONY: test-coverage
test-coverage:
@mkdir -p .coverage
@go test -race -cover -json -coverprofile=.coverage/cover.out.tmp ./... | grep -Ev "diodepb|reconcilerpb|cmd|mocks|sentry" | tparse -format=markdown > .coverage/test-report.md
@cat .coverage/cover.out.tmp | grep -Ev "diodepb|reconcilerpb|cmd|mocks|sentry" > .coverage/cover.out
@go tool cover -func=.coverage/cover.out | grep total | awk '{print substr($$3, 1, length($$3)-1)}' > .coverage/coverage.txt
.PHONY: $(BUILD_SERVICES)
$(BUILD_SERVICES):
@$(eval SVC=$(subst build-,,$@))
@CGO_ENABLED=$(CGO_ENABLED) GOOS=$(GOOS) GOARCH=$(GOARCH) GOARM=$(GOARM)
@go build -ldflags "$(LD_FLAGS)" -o $(BUILD_DIR)/$(SVC) ./cmd/$(SVC)
.PHONY: build-all
build-all: $(BUILD_SERVICES)
.PHONY: $(DOCKER_SERVICES)
$(DOCKER_SERVICES):
@$(eval SVC=$(subst docker-,,$@))
@GOOS=$(GOOS) GOARCH=$(GOARCH) $(MAKE) build-$(SVC)
docker build \
--no-cache \
--build-arg SVC=$(SVC) \
--build-arg GOOS=$(GOOS) \
--build-arg GOARCH=$(GOARCH) \
--build-arg GOARM=$(GOARM) \
--tag=$(ORG_NAME)/$(REPO_NAME)-$(SVC):$(DIODE_VERSION)-$(COMMIT_SHA) \
-f docker/Dockerfile .
.PHONY: docker-all
docker-all: $(DOCKER_SERVICES)
.PHONY: docker-compose-up
docker-compose-up:
$(DOCKER_COMPOSE) --env-file docker/sample.env -f docker/docker-compose.yaml up -d --build
.PHONY: docker-compose-down
docker-compose-down:
$(DOCKER_COMPOSE) --env-file docker/sample.env -f docker/docker-compose.yaml down --remove-orphans
.PHONY: docker-compose-dev-up
docker-compose-dev-up: docker-all
@DIODE_VERSION=$(DIODE_VERSION) COMMIT_SHA=$(COMMIT_SHA) DIODE_TAG=$(DIODE_VERSION)-$(COMMIT_SHA) PROJECT_NAME=diode-dev \
$(DOCKER_COMPOSE) --env-file docker/sample.env --env-file docker/dev.env -f docker/docker-compose.yaml -f docker/docker-compose.dev.yaml up -d --build
.PHONY: docker-compose-dev-down
docker-compose-dev-down:
@DIODE_VERSION=$(DIODE_VERSION) COMMIT_SHA=$(COMMIT_SHA) DIODE_TAG=$(DIODE_VERSION)-$(COMMIT_SHA) PROJECT_NAME=diode-dev \
$(DOCKER_COMPOSE) --env-file docker/sample.env --env-file docker/dev.env -f docker/docker-compose.yaml -f docker/docker-compose.dev.yaml down --remove-orphans
.PHONY: docker-compose-netbox-up
docker-compose-netbox-up:
$(DOCKER_COMPOSE) -f docker/docker-compose.netbox.yaml up -d --build
.PHONY: docker-compose-netbox-down
docker-compose-netbox-down:
$(DOCKER_COMPOSE) -f docker/docker-compose.netbox.yaml down
.PHONY: clean
clean:
@rm -rf $(BUILD_DIR)/*
.PHONY: gen-mocks
gen-mocks:
mockery
.PHONY: gen-dbstore
gen-dbstore:
sqlc generate