fix the extra wake ups being caused by wol-proxy * cmd/wol-proxy: tweak logs to show what is causing wake ups * cmd/wol-proxy: add skip wakeup * cmd/wol-proxy: replace ticker with SSE connection * cmd/wol-proxy: increase scanner buffer size * cmd/wol-proxy: improve failure tracking
97 lines
3.4 KiB
Makefile
97 lines
3.4 KiB
Makefile
# Define variables for the application
|
|
APP_NAME = llama-swap
|
|
BUILD_DIR = build
|
|
|
|
# Get the current Git hash
|
|
GIT_HASH := $(shell git rev-parse --short HEAD)
|
|
ifneq ($(shell git status --porcelain),)
|
|
# There are untracked changes
|
|
GIT_HASH := $(GIT_HASH)+
|
|
endif
|
|
|
|
# Capture the current build date in RFC3339 format
|
|
BUILD_DATE := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
|
|
|
|
# Default target: Builds binaries for both OSX and Linux
|
|
all: mac linux simple-responder
|
|
|
|
# Clean build directory
|
|
clean:
|
|
rm -rf $(BUILD_DIR)
|
|
|
|
proxy/ui_dist/placeholder.txt:
|
|
mkdir -p proxy/ui_dist
|
|
touch $@
|
|
|
|
# use cached test results while developing
|
|
test-dev: proxy/ui_dist/placeholder.txt
|
|
go test -short ./proxy/...
|
|
staticcheck ./proxy/... || true
|
|
|
|
test: proxy/ui_dist/placeholder.txt
|
|
go test -short -count=1 ./proxy/...
|
|
|
|
# for CI - full test (takes longer)
|
|
test-all: proxy/ui_dist/placeholder.txt
|
|
go test -race -count=1 ./proxy/...
|
|
|
|
ui/node_modules:
|
|
cd ui && npm install
|
|
|
|
# build react UI
|
|
ui: ui/node_modules
|
|
cd ui && npm run build
|
|
|
|
# Build OSX binary
|
|
mac: ui
|
|
@echo "Building Mac binary..."
|
|
GOOS=darwin GOARCH=arm64 go build -ldflags="-X main.commit=${GIT_HASH} -X main.version=local_${GIT_HASH} -X main.date=${BUILD_DATE}" -o $(BUILD_DIR)/$(APP_NAME)-darwin-arm64
|
|
|
|
# Build Linux binary
|
|
linux: ui
|
|
@echo "Building Linux binary..."
|
|
GOOS=linux GOARCH=amd64 go build -ldflags="-X main.commit=${GIT_HASH} -X main.version=local_${GIT_HASH} -X main.date=${BUILD_DATE}" -o $(BUILD_DIR)/$(APP_NAME)-linux-amd64
|
|
GOOS=linux GOARCH=arm64 go build -ldflags="-X main.commit=${GIT_HASH} -X main.version=local_${GIT_HASH} -X main.date=${BUILD_DATE}" -o $(BUILD_DIR)/$(APP_NAME)-linux-arm64
|
|
|
|
# Build Windows binary
|
|
windows: ui
|
|
@echo "Building Windows binary..."
|
|
GOOS=windows GOARCH=amd64 go build -ldflags="-X main.commit=${GIT_HASH} -X main.version=local_${GIT_HASH} -X main.date=${BUILD_DATE}" -o $(BUILD_DIR)/$(APP_NAME)-windows-amd64.exe
|
|
|
|
# for testing proxy.Process
|
|
simple-responder:
|
|
@echo "Building simple responder"
|
|
GOOS=darwin GOARCH=arm64 go build -o $(BUILD_DIR)/simple-responder_darwin_arm64 cmd/simple-responder/simple-responder.go
|
|
GOOS=linux GOARCH=amd64 go build -o $(BUILD_DIR)/simple-responder_linux_amd64 cmd/simple-responder/simple-responder.go
|
|
|
|
simple-responder-windows:
|
|
@echo "Building simple responder for windows"
|
|
GOOS=windows GOARCH=amd64 go build -o $(BUILD_DIR)/simple-responder.exe cmd/simple-responder/simple-responder.go
|
|
|
|
# Ensure build directory exists
|
|
$(BUILD_DIR):
|
|
mkdir -p $(BUILD_DIR)
|
|
|
|
# Create a new release tag
|
|
release:
|
|
@echo "Checking for unstaged changes..."
|
|
@if [ -n "$(shell git status --porcelain)" ]; then \
|
|
echo "Error: There are unstaged changes. Please commit or stash your changes before creating a release tag." >&2; \
|
|
exit 1; \
|
|
fi
|
|
|
|
# Get the highest tag in v{number} format, increment it, and create a new tag
|
|
@highest_tag=$$(git tag --sort=-v:refname | grep -E '^v[0-9]+$$' | head -n 1 || echo "v0"); \
|
|
new_tag="v$$(( $${highest_tag#v} + 1 ))"; \
|
|
echo "tagging new version: $$new_tag"; \
|
|
git tag "$$new_tag";
|
|
|
|
GOOS ?= $(shell go env GOOS 2>/dev/null || echo linux)
|
|
GOARCH ?= $(shell go env GOARCH 2>/dev/null || echo amd64)
|
|
wol-proxy: $(BUILD_DIR)
|
|
@echo "Building wol-proxy"
|
|
go build -o $(BUILD_DIR)/wol-proxy-$(GOOS)-$(GOARCH)-$(shell date +%Y-%m-%d) cmd/wol-proxy/wol-proxy.go
|
|
|
|
# Phony targets
|
|
.PHONY: all clean ui mac linux windows simple-responder simple-responder-windows test test-all test-dev wol-proxy
|