mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-11-16 17:07:36 +00:00
279b142e76
The build system is changed, now it build 2 different binary by using go `-tags`. The local output binary also changed based on build tags.
31 lines
1.1 KiB
Makefile
31 lines
1.1 KiB
Makefile
.PHONY: deploy-prober deploy-server ui client server build
|
|
|
|
BINARY_NAME = xmr-nodes
|
|
|
|
build: client server
|
|
|
|
ui:
|
|
go generate ./...
|
|
|
|
client:
|
|
CGO_ENABLED=0 GOARCH=amd64 GOOS=linux go build -ldflags="-s -w" -o bin/${BINARY_NAME}-client-linux-amd64
|
|
CGO_ENABLED=0 GOARCH=arm64 GOOS=linux go build -ldflags="-s -w" -o bin/${BINARY_NAME}-client-linux-arm64
|
|
|
|
server: ui
|
|
CGO_ENABLED=0 GOARCH=amd64 GOOS=linux go build -ldflags="-s -w" -tags server -o bin/${BINARY_NAME}-server-linux-amd64
|
|
CGO_ENABLED=0 GOARCH=arm64 GOOS=linux go build -ldflags="-s -w" -tags server -o bin/${BINARY_NAME}-server-linux-arm64
|
|
|
|
clean:
|
|
go clean
|
|
rm -rfv ./bin
|
|
rm -rf ./frontend/build
|
|
|
|
# Deploying new binary file to server and probers host
|
|
# The deploy-* command doesn't build the binary file, so you need to run `make build` first.
|
|
# And make sure the inventory and deploy-*.yml file is properly configured.
|
|
|
|
deploy-server:
|
|
ansible-playbook -i ./tools/ansible/inventory.ini -l server ./tools/ansible/deploy-server.yml -K
|
|
|
|
deploy-prober:
|
|
ansible-playbook -i ./tools/ansible/inventory.ini -l prober ./tools/ansible/deploy-prober.yml -K
|