2019-05-22 21:16:55 +00:00
|
|
|
PKG_PREFIX := github.com/VictoriaMetrics/VictoriaMetrics
|
|
|
|
|
2021-04-10 12:46:53 +00:00
|
|
|
DATEINFO_TAG ?= $(shell date -u +'%Y%m%d-%H%M%S')
|
2019-05-22 21:16:55 +00:00
|
|
|
BUILDINFO_TAG ?= $(shell echo $$(git describe --long --all | tr '/' '-')$$( \
|
2019-08-27 22:04:44 +00:00
|
|
|
git diff-index --quiet HEAD -- || echo '-dirty-'$$(git diff-index -u HEAD | openssl sha1 | cut -c 10-17)))
|
2019-05-22 21:16:55 +00:00
|
|
|
|
|
|
|
PKG_TAG ?= $(shell git tag -l --points-at HEAD)
|
|
|
|
ifeq ($(PKG_TAG),)
|
|
|
|
PKG_TAG := $(BUILDINFO_TAG)
|
|
|
|
endif
|
|
|
|
|
2021-04-10 12:46:53 +00:00
|
|
|
GO_BUILDINFO = -X '$(PKG_PREFIX)/lib/buildinfo.Version=$(APP_NAME)-$(DATEINFO_TAG)-$(BUILDINFO_TAG)'
|
2019-05-22 21:16:55 +00:00
|
|
|
|
2020-12-18 10:20:01 +00:00
|
|
|
.PHONY: $(MAKECMDGOALS)
|
|
|
|
|
2022-07-13 13:44:39 +00:00
|
|
|
include app/*/Makefile
|
|
|
|
include deployment/*/Makefile
|
2022-08-30 23:27:24 +00:00
|
|
|
include package/release/Makefile
|
2022-07-13 13:44:39 +00:00
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
all: \
|
2019-05-22 21:23:23 +00:00
|
|
|
vminsert \
|
|
|
|
vmselect \
|
2020-12-18 16:27:04 +00:00
|
|
|
vmstorage
|
2019-05-22 21:16:55 +00:00
|
|
|
|
2019-07-23 16:54:50 +00:00
|
|
|
all-pure: \
|
|
|
|
vminsert-pure \
|
|
|
|
vmselect-pure \
|
2020-12-18 16:27:04 +00:00
|
|
|
vmstorage-pure
|
2019-07-23 16:54:50 +00:00
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
clean:
|
|
|
|
rm -rf bin/*
|
|
|
|
|
2022-07-13 13:44:39 +00:00
|
|
|
vmcluster-linux-amd64: \
|
|
|
|
vminsert-linux-amd64 \
|
|
|
|
vmselect-linux-amd64 \
|
|
|
|
vmstorage-linux-amd64
|
|
|
|
|
|
|
|
vmcluster-linux-arm64: \
|
|
|
|
vminsert-linux-arm64 \
|
|
|
|
vmselect-linux-arm64 \
|
|
|
|
vmstorage-linux-arm64
|
|
|
|
|
|
|
|
vmcluster-linux-arm: \
|
|
|
|
vminsert-linux-arm \
|
|
|
|
vmselect-linux-arm \
|
|
|
|
vmstorage-linux-arm
|
|
|
|
|
|
|
|
vmcluster-linux-ppc64le: \
|
|
|
|
vminsert-linux-ppc64le \
|
|
|
|
vmselect-linux-ppc64le \
|
|
|
|
vmstorage-linux-ppc64le
|
|
|
|
|
|
|
|
vmcluster-linux-386: \
|
|
|
|
vminsert-linux-386 \
|
|
|
|
vmselect-linux-386 \
|
|
|
|
vmstorage-linux-386
|
|
|
|
|
|
|
|
vmcluster-freebsd-amd64: \
|
|
|
|
vminsert-freebsd-amd64 \
|
|
|
|
vmselect-freebsd-amd64 \
|
|
|
|
vmstorage-freebsd-amd64
|
|
|
|
|
|
|
|
vmcluster-openbsd-amd64: \
|
|
|
|
vminsert-openbsd-amd64 \
|
|
|
|
vmselect-openbsd-amd64 \
|
|
|
|
vmstorage-openbsd-amd64
|
|
|
|
|
|
|
|
vmcluster-crossbuild: \
|
|
|
|
vmcluster-linux-amd64 \
|
|
|
|
vmcluster-linux-arm64 \
|
|
|
|
vmcluster-linux-arm \
|
|
|
|
vmcluster-linux-ppc64le \
|
|
|
|
vmcluster-linux-386 \
|
|
|
|
vmcluster-freebsd-amd64 \
|
|
|
|
vmcluster-openbsd-amd64
|
|
|
|
|
2022-08-02 06:54:39 +00:00
|
|
|
publish: docker-scan \
|
2019-11-07 19:05:39 +00:00
|
|
|
publish-vminsert \
|
2020-02-16 14:55:28 +00:00
|
|
|
publish-vmselect \
|
2020-12-18 16:27:04 +00:00
|
|
|
publish-vmstorage
|
2019-05-22 21:23:23 +00:00
|
|
|
|
|
|
|
package: \
|
2019-11-07 19:05:39 +00:00
|
|
|
package-vminsert \
|
2020-02-16 14:55:28 +00:00
|
|
|
package-vmselect \
|
2020-12-18 16:27:04 +00:00
|
|
|
package-vmstorage
|
2019-05-22 21:16:55 +00:00
|
|
|
|
2021-11-08 10:29:10 +00:00
|
|
|
publish-release:
|
2022-07-13 13:44:39 +00:00
|
|
|
git checkout $(TAG) && $(MAKE) release publish && \
|
|
|
|
git checkout $(TAG)-cluster && $(MAKE) release publish && \
|
|
|
|
git checkout $(TAG)-enterprise && $(MAKE) release publish && \
|
2022-08-30 23:27:24 +00:00
|
|
|
git checkout $(TAG)-enterprise-cluster && $(MAKE) release publish && \
|
|
|
|
$(MAKE) github-create-release && \
|
|
|
|
$(MAKE) github-upload-assets
|
2021-11-08 10:29:10 +00:00
|
|
|
|
2019-08-15 11:05:17 +00:00
|
|
|
release: \
|
2020-12-18 16:27:04 +00:00
|
|
|
release-vmcluster
|
2019-11-07 19:05:39 +00:00
|
|
|
|
|
|
|
release-vmcluster: \
|
2022-07-13 12:42:48 +00:00
|
|
|
release-vmcluster-linux-amd64 \
|
2022-07-13 13:44:39 +00:00
|
|
|
release-vmcluster-linux-arm64 \
|
|
|
|
release-vmcluster-freebsd-amd64 \
|
|
|
|
release-vmcluster-openbsd-amd64
|
2021-04-05 20:01:45 +00:00
|
|
|
|
2022-07-13 12:42:48 +00:00
|
|
|
release-vmcluster-linux-amd64:
|
|
|
|
GOOS=linux GOARCH=amd64 $(MAKE) release-vmcluster-goos-goarch
|
2021-04-05 20:01:45 +00:00
|
|
|
|
2022-07-13 12:42:48 +00:00
|
|
|
release-vmcluster-linux-arm64:
|
2022-07-13 13:44:39 +00:00
|
|
|
GOOS=linux GOARCH=arm64 $(MAKE) release-vmcluster-goos-goarch
|
|
|
|
|
|
|
|
release-vmcluster-freebsd-amd64:
|
|
|
|
GOOS=freebsd GOARCH=amd64 $(MAKE) release-vmcluster-goos-goarch
|
|
|
|
|
|
|
|
release-vmcluster-openbsd-amd64:
|
|
|
|
GOOS=openbsd GOARCH=amd64 $(MAKE) release-vmcluster-goos-goarch
|
2021-04-05 20:01:45 +00:00
|
|
|
|
2022-07-13 12:42:48 +00:00
|
|
|
release-vmcluster-goos-goarch: \
|
|
|
|
vminsert-$(GOOS)-$(GOARCH)-prod \
|
|
|
|
vmselect-$(GOOS)-$(GOARCH)-prod \
|
|
|
|
vmstorage-$(GOOS)-$(GOARCH)-prod
|
2021-04-05 20:01:45 +00:00
|
|
|
cd bin && \
|
2022-07-13 12:42:48 +00:00
|
|
|
tar --transform="flags=r;s|-$(GOOS)-$(GOARCH)||" -czf victoria-metrics-$(GOOS)-$(GOARCH)-$(PKG_TAG).tar.gz \
|
|
|
|
vminsert-$(GOOS)-$(GOARCH)-prod \
|
|
|
|
vmselect-$(GOOS)-$(GOARCH)-prod \
|
|
|
|
vmstorage-$(GOOS)-$(GOARCH)-prod \
|
|
|
|
&& sha256sum victoria-metrics-$(GOOS)-$(GOARCH)-$(PKG_TAG).tar.gz \
|
|
|
|
vminsert-$(GOOS)-$(GOARCH)-prod \
|
|
|
|
vmselect-$(GOOS)-$(GOARCH)-prod \
|
|
|
|
vmstorage-$(GOOS)-$(GOARCH)-prod \
|
|
|
|
| sed s/-$(GOOS)-$(GOARCH)-prod/-prod/ > victoria-metrics-$(GOOS)-$(GOARCH)-$(PKG_TAG)_checksums.txt
|
2022-07-13 13:44:39 +00:00
|
|
|
cd bin && rm -rf \
|
|
|
|
vminsert-$(GOOS)-$(GOARCH)-prod \
|
|
|
|
vmselect-$(GOOS)-$(GOARCH)-prod \
|
|
|
|
vmstorage-$(GOOS)-$(GOARCH)-prod
|
2019-08-15 11:05:17 +00:00
|
|
|
|
2019-11-04 10:43:26 +00:00
|
|
|
pprof-cpu:
|
|
|
|
go tool pprof -trim_path=github.com/VictoriaMetrics/VictoriaMetrics@ $(PPROF_FILE)
|
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
fmt:
|
2022-07-13 13:44:39 +00:00
|
|
|
gofmt -l -w -s ./lib
|
|
|
|
gofmt -l -w -s ./app
|
2019-05-22 21:16:55 +00:00
|
|
|
|
|
|
|
vet:
|
2022-08-07 17:39:05 +00:00
|
|
|
go vet ./lib/...
|
|
|
|
go vet ./app/...
|
2019-05-22 21:16:55 +00:00
|
|
|
|
|
|
|
lint: install-golint
|
|
|
|
golint lib/...
|
|
|
|
golint app/...
|
|
|
|
|
|
|
|
install-golint:
|
2021-05-10 08:54:35 +00:00
|
|
|
which golint || GO111MODULE=off go get golang.org/x/lint/golint
|
2019-05-22 21:16:55 +00:00
|
|
|
|
|
|
|
errcheck: install-errcheck
|
|
|
|
errcheck -exclude=errcheck_excludes.txt ./lib/...
|
|
|
|
errcheck -exclude=errcheck_excludes.txt ./app/vminsert/...
|
|
|
|
errcheck -exclude=errcheck_excludes.txt ./app/vmselect/...
|
|
|
|
errcheck -exclude=errcheck_excludes.txt ./app/vmstorage/...
|
2020-02-23 11:35:47 +00:00
|
|
|
errcheck -exclude=errcheck_excludes.txt ./app/vmagent/...
|
2020-04-27 21:09:35 +00:00
|
|
|
errcheck -exclude=errcheck_excludes.txt ./app/vmalert/...
|
2020-05-05 07:53:42 +00:00
|
|
|
errcheck -exclude=errcheck_excludes.txt ./app/vmauth/...
|
2019-11-07 19:05:39 +00:00
|
|
|
errcheck -exclude=errcheck_excludes.txt ./app/vmbackup/...
|
|
|
|
errcheck -exclude=errcheck_excludes.txt ./app/vmrestore/...
|
2021-01-31 23:10:16 +00:00
|
|
|
errcheck -exclude=errcheck_excludes.txt ./app/vmctl/...
|
2019-05-22 21:16:55 +00:00
|
|
|
|
|
|
|
install-errcheck:
|
2021-05-10 08:54:35 +00:00
|
|
|
which errcheck || GO111MODULE=off go get github.com/kisielk/errcheck
|
2019-05-22 21:16:55 +00:00
|
|
|
|
2019-08-13 18:31:13 +00:00
|
|
|
check-all: fmt vet lint errcheck golangci-lint
|
2019-06-20 11:52:48 +00:00
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
test:
|
2022-08-07 17:39:05 +00:00
|
|
|
go test ./lib/... ./app/...
|
2019-06-20 11:52:48 +00:00
|
|
|
|
2020-03-05 10:02:06 +00:00
|
|
|
test-race:
|
2022-08-07 17:39:05 +00:00
|
|
|
go test -race ./lib/... ./app/...
|
2020-03-05 10:02:06 +00:00
|
|
|
|
2019-07-23 16:26:39 +00:00
|
|
|
test-pure:
|
2022-08-07 17:39:05 +00:00
|
|
|
CGO_ENABLED=0 go test ./lib/... ./app/...
|
2019-07-23 16:54:50 +00:00
|
|
|
|
|
|
|
test-full:
|
2022-08-07 17:39:05 +00:00
|
|
|
go test -coverprofile=coverage.txt -covermode=atomic ./lib/... ./app/...
|
2019-07-23 16:26:39 +00:00
|
|
|
|
2019-10-17 15:22:56 +00:00
|
|
|
test-full-386:
|
2022-08-07 17:39:05 +00:00
|
|
|
GOARCH=386 go test -coverprofile=coverage.txt -covermode=atomic ./lib/... ./app/...
|
2019-10-17 15:22:56 +00:00
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
benchmark:
|
2022-08-07 17:39:05 +00:00
|
|
|
go test -bench=. ./lib/...
|
|
|
|
go test -bench=. ./app/...
|
2019-05-22 21:16:55 +00:00
|
|
|
|
2019-07-23 16:26:39 +00:00
|
|
|
benchmark-pure:
|
2022-08-07 17:39:05 +00:00
|
|
|
CGO_ENABLED=0 go test -bench=. ./lib/...
|
|
|
|
CGO_ENABLED=0 go test -bench=. ./app/...
|
2019-07-23 16:26:39 +00:00
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
vendor-update:
|
2022-07-13 13:44:39 +00:00
|
|
|
go get -u -d ./lib/...
|
|
|
|
go get -u -d ./app/...
|
2022-08-14 21:53:41 +00:00
|
|
|
go mod tidy -compat=1.18
|
2022-07-13 13:44:39 +00:00
|
|
|
go mod vendor
|
2019-05-22 21:16:55 +00:00
|
|
|
|
2019-05-22 21:23:23 +00:00
|
|
|
app-local:
|
2022-08-07 17:39:05 +00:00
|
|
|
CGO_ENABLED=1 go build $(RACE) -ldflags "$(GO_BUILDINFO)" -o bin/$(APP_NAME)$(RACE) $(PKG_PREFIX)/app/$(APP_NAME)
|
2019-07-23 16:54:50 +00:00
|
|
|
|
|
|
|
app-local-pure:
|
2022-08-07 17:39:05 +00:00
|
|
|
CGO_ENABLED=0 go build $(RACE) -ldflags "$(GO_BUILDINFO)" -o bin/$(APP_NAME)-pure$(RACE) $(PKG_PREFIX)/app/$(APP_NAME)
|
2019-05-22 21:23:23 +00:00
|
|
|
|
2022-07-13 13:44:39 +00:00
|
|
|
app-local-goos-goarch:
|
2022-08-07 17:39:05 +00:00
|
|
|
CGO_ENABLED=$(CGO_ENABLED) GOOS=$(GOOS) GOARCH=$(GOARCH) go build $(RACE) -ldflags "$(GO_BUILDINFO)" -o bin/$(APP_NAME)-$(GOOS)-$(GOARCH)$(RACE) $(PKG_PREFIX)/app/$(APP_NAME)
|
2020-07-31 10:42:09 +00:00
|
|
|
|
2022-07-13 13:44:39 +00:00
|
|
|
app-local-windows-goarch:
|
2022-08-07 17:39:05 +00:00
|
|
|
CGO_ENABLED=0 GOOS=windows GOARCH=$(GOARCH) go build $(RACE) -ldflags "$(GO_BUILDINFO)" -o bin/$(APP_NAME)-windows-$(GOARCH)$(RACE).exe $(PKG_PREFIX)/app/$(APP_NAME)
|
2021-03-16 18:49:07 +00:00
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
quicktemplate-gen: install-qtc
|
|
|
|
qtc
|
|
|
|
|
|
|
|
install-qtc:
|
2021-05-10 08:54:35 +00:00
|
|
|
which qtc || GO111MODULE=off go get github.com/valyala/quicktemplate/qtc
|
2019-06-20 11:30:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
golangci-lint: install-golangci-lint
|
2020-05-07 16:40:53 +00:00
|
|
|
golangci-lint run --exclude '(SA4003|SA1019|SA5011):' -D errcheck -D structcheck --timeout 2m
|
2019-06-20 11:30:55 +00:00
|
|
|
|
|
|
|
install-golangci-lint:
|
2022-08-07 19:32:56 +00:00
|
|
|
which golangci-lint || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.48.0
|
2020-06-02 16:12:07 +00:00
|
|
|
|
2021-05-10 08:54:35 +00:00
|
|
|
install-wwhrd:
|
|
|
|
which wwhrd || GO111MODULE=off go get github.com/frapposelli/wwhrd
|
|
|
|
|
|
|
|
check-licenses: install-wwhrd
|
|
|
|
wwhrd check -f .wwhrd.yml
|
|
|
|
|
2021-04-07 10:39:16 +00:00
|
|
|
copy-docs:
|
|
|
|
echo "---\nsort: ${ORDER}\n---\n" > ${DST}
|
|
|
|
cat ${SRC} >> ${DST}
|
|
|
|
|
|
|
|
# Copies docs for all components and adds the order tag.
|
|
|
|
# Cluster docs are supposed to be ordered as 9th.
|
|
|
|
# For The rest of docs is ordered manually.t
|
2020-06-02 16:12:07 +00:00
|
|
|
docs-sync:
|
2021-05-26 09:28:58 +00:00
|
|
|
SRC=README.md DST=docs/Cluster-VictoriaMetrics.md ORDER=2 $(MAKE) copy-docs
|
|
|
|
SRC=app/vmagent/README.md DST=docs/vmagent.md ORDER=3 $(MAKE) copy-docs
|
|
|
|
SRC=app/vmalert/README.md DST=docs/vmalert.md ORDER=4 $(MAKE) copy-docs
|
|
|
|
SRC=app/vmauth/README.md DST=docs/vmauth.md ORDER=5 $(MAKE) copy-docs
|
|
|
|
SRC=app/vmbackup/README.md DST=docs/vmbackup.md ORDER=6 $(MAKE) copy-docs
|
|
|
|
SRC=app/vmrestore/README.md DST=docs/vmrestore.md ORDER=7 $(MAKE) copy-docs
|
|
|
|
SRC=app/vmctl/README.md DST=docs/vmctl.md ORDER=8 $(MAKE) copy-docs
|
|
|
|
SRC=app/vmgateway/README.md DST=docs/vmgateway.md ORDER=9 $(MAKE) copy-docs
|
|
|
|
SRC=app/vmbackupmanager/README.md DST=docs/vmbackupmanager.md ORDER=10 $(MAKE) copy-docs
|