mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
75e84144c7
* adds release build for macos darwin amd64 and arm64 https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1896 https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1851 * wip Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
92 lines
2.2 KiB
Makefile
92 lines
2.2 KiB
Makefile
# All these commands must run from repository root.
|
|
|
|
vmagent:
|
|
APP_NAME=vmagent $(MAKE) app-local
|
|
|
|
vmagent-race:
|
|
APP_NAME=vmagent RACE=-race $(MAKE) app-local
|
|
|
|
vmagent-prod:
|
|
APP_NAME=vmagent $(MAKE) app-via-docker
|
|
|
|
vmagent-pure-prod:
|
|
APP_NAME=vmagent $(MAKE) app-via-docker-pure
|
|
|
|
vmagent-amd64-prod:
|
|
APP_NAME=vmagent $(MAKE) app-via-docker-amd64
|
|
|
|
vmagent-arm-prod:
|
|
APP_NAME=vmagent $(MAKE) app-via-docker-arm
|
|
|
|
vmagent-arm64-prod:
|
|
APP_NAME=vmagent $(MAKE) app-via-docker-arm64
|
|
|
|
vmagent-ppc64le-prod:
|
|
APP_NAME=vmagent $(MAKE) app-via-docker-ppc64le
|
|
|
|
vmagent-386-prod:
|
|
APP_NAME=vmagent $(MAKE) app-via-docker-386
|
|
|
|
vmagent-darwin-amd64-prod:
|
|
APP_NAME=vmagent $(MAKE) app-via-docker-darwin-amd64
|
|
|
|
vmagent-darwin-arm64-prod:
|
|
APP_NAME=vmagent $(MAKE) app-via-docker-darwin-arm64
|
|
|
|
vmagent-windows-amd64-prod:
|
|
APP_NAME=vmagent $(MAKE) app-via-docker-windows-amd64
|
|
|
|
package-vmagent:
|
|
APP_NAME=vmagent $(MAKE) package-via-docker
|
|
|
|
package-vmagent-pure:
|
|
APP_NAME=vmagent $(MAKE) package-via-docker-pure
|
|
|
|
package-vmagent-amd64:
|
|
APP_NAME=vmagent $(MAKE) package-via-docker-amd64
|
|
|
|
package-vmagent-arm:
|
|
APP_NAME=vmagent $(MAKE) package-via-docker-arm
|
|
|
|
package-vmagent-arm64:
|
|
APP_NAME=vmagent $(MAKE) package-via-docker-arm64
|
|
|
|
package-vmagent-ppc64le:
|
|
APP_NAME=vmagent $(MAKE) package-via-docker-ppc64le
|
|
|
|
package-vmagent-386:
|
|
APP_NAME=vmagent $(MAKE) package-via-docker-386
|
|
|
|
publish-vmagent:
|
|
APP_NAME=vmagent $(MAKE) publish-via-docker
|
|
|
|
run-vmagent:
|
|
mkdir -p vmagent-remotewrite-data
|
|
DOCKER_OPTS='-v $(shell pwd)/vmagent-remotewrite-data:/vmagent-remotewrite-data' \
|
|
ARGS='-remoteWrite.url=http://localhost:8428/api/v1/write' \
|
|
APP_NAME=vmagent \
|
|
$(MAKE) run-via-docker
|
|
|
|
vmagent-amd64:
|
|
CGO_ENABLED=1 GOARCH=amd64 $(MAKE) vmagent-local-with-goarch
|
|
|
|
vmagent-arm:
|
|
CGO_ENABLED=0 GOARCH=arm $(MAKE) vmagent-local-with-goarch
|
|
|
|
vmagent-arm64:
|
|
CGO_ENABLED=0 GOARCH=arm64 $(MAKE) vmagent-local-with-goarch
|
|
|
|
vmagent-ppc64le:
|
|
CGO_ENABLED=0 GOARCH=ppc64le $(MAKE) vmagent-local-with-goarch
|
|
|
|
vmagent-386:
|
|
CGO_ENABLED=0 GOARCH=386 $(MAKE) vmagent-local-with-goarch
|
|
|
|
vmagent-local-with-goarch:
|
|
APP_NAME=vmagent $(MAKE) app-local-with-goarch
|
|
|
|
vmagent-pure:
|
|
APP_NAME=vmagent $(MAKE) app-local-pure
|
|
|
|
vmagent-windows-amd64:
|
|
GOARCH=amd64 APP_NAME=vmagent $(MAKE) app-local-windows-with-goarch
|