-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathMakefile
100 lines (80 loc) · 3.56 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
OUTFILE := pganalyze-collector
PROTOBUF_FILES := $(wildcard protobuf/*.proto)
PATH := $(PWD)/protoc/bin:$(PWD)/bin:$(PATH)
SHELL := env PATH=$(PATH) /bin/sh
PROTOC_VERSION_NEEDED := 28.2
PROTOC_VERSION := $(shell command -v protoc > /dev/null 2>&1 && protoc --version || echo 'none')
PROTOC_BASE_URL := https://github.com/protocolbuffers/protobuf/releases/download/
ARCH := $(shell uname -m)
ifneq (,$(filter $(ARCH),arm64 aarch64))
PROTOC_ARCH := aarch_64
else
PROTOC_ARCH := $(ARCH)
endif
ifeq ($(shell uname), Linux)
PROTOC_FILENAME := protoc-$(PROTOC_VERSION_NEEDED)-linux-$(PROTOC_ARCH).zip
endif
ifeq ($(shell uname), Darwin)
PROTOC_FILENAME := protoc-$(PROTOC_VERSION_NEEDED)-osx-$(PROTOC_ARCH).zip
endif
PROTOC_URL := $(PROTOC_BASE_URL)v$(PROTOC_VERSION_NEEDED)/$(PROTOC_FILENAME)
.PHONY: default build build_dist vendor test docker_release packages integration_test
default: build test
build: install_protoc output/pganalyze_collector/snapshot.pb.go build_dist
build_dist:
go build -o ${OUTFILE}
make -C helper OUTFILE=../pganalyze-collector-helper
make -C setup OUTFILE=../pganalyze-collector-setup
# Sign built Go binaries for macOS
@if [ "$(shell uname)" = "Darwin" ] && command -v codesign > /dev/null 2>&1; then \
codesign --force --sign - ${OUTFILE}; \
codesign --force --sign - pganalyze-collector-helper; \
codesign --force --sign - pganalyze-collector-setup; \
fi
build_dist_alpine:
# Increase stack size from Alpine's default of 80kb to 2mb - otherwise we see
# crashes on very complex queries, pg_query expects at least 100kb stack size
go build -o ${OUTFILE} -ldflags '-extldflags "-Wl,-z,stack-size=0x200000"'
make -C helper OUTFILE=../pganalyze-collector-helper
make -C setup OUTFILE=../pganalyze-collector-setup
vendor:
GO111MODULE=on go mod tidy
GO111MODULE=on go mod vendor
test: build
go test -race -coverprofile=coverage.out ./...
coverage: test
go tool cover -html=coverage.out
run: build
go run -race .
integration_test:
make -C integration_test
packages:
make -C packages
DOCKER_RELEASE_TAG := $(shell git describe --tags --exact-match --abbrev=0 2> /dev/null)
docker_release:
@test -n "$(DOCKER_RELEASE_TAG)" || (echo "ERROR: DOCKER_RELEASE_TAG is not set, make sure you are on a git release tag or override by setting DOCKER_RELEASE_TAG" ; exit 1)
docker buildx create --name collector-build --driver docker-container
docker buildx build --platform linux/amd64,linux/arm64 --builder collector-build --push \
-t quay.io/pganalyze/collector:$(DOCKER_RELEASE_TAG) \
-t quay.io/pganalyze/collector:latest \
-t quay.io/pganalyze/collector:stable \
.
docker buildx rm collector-build
output/pganalyze_collector/snapshot.pb.go: $(PROTOBUF_FILES)
ifdef PROTOC_VERSION
mkdir -p $(PWD)/bin
GOBIN=$(PWD)/bin go install google.golang.org/protobuf/cmd/[email protected]
protoc --go_out=. --go_opt=module=github.com/pganalyze/collector -I protobuf $(PROTOBUF_FILES)
else
@echo '👷 Warning: protoc not found, skipping protocol buffer regeneration (to install protoc check Makefile instructions in install_protoc step)'
endif
install_protoc:
ifeq (,$(findstring $(PROTOC_VERSION_NEEDED), $(PROTOC_VERSION)))
@echo "⚠️ protoc version needed: $(PROTOC_VERSION_NEEDED) vs $(PROTOC_VERSION) installed"
@echo "ℹ️ Vendoring protoc $(PROTOC_VERSION_NEEDED)"
@mkdir -p tmp
curl --location --output tmp/$(PROTOC_FILENAME) $(PROTOC_URL)
unzip -d protoc tmp/$(PROTOC_FILENAME)
rm tmp/$(PROTOC_FILENAME)
@echo "ℹ️ If this is macOS, you will need to try running the binary yourself, then go to Security & Privacy to explicitly allow it."
endif