mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-21 09:28:14 +00:00
- P0-1: ProviderError type + ReportStatus for precise 401/403 detection - P0-2: Remove -config flag from deploy/homeagent.service - P2-1: 5s debounce on context.go Save() - P2-2→C1: Delete output_set_channel entirely - P2-3: Extract mediaDataURL/mediaChat helpers - P2-4: Dedup defaultSources var - P3: Delete dead packages (embed/tokenizer/container/snapshot) - P3: Delete dead functions (messagesToMap, RunStageAll) - CL: Update .gitignore, docs, Makefile, gojieba removal - Config: Delete config/config.yaml, update docs - Arch: Remove EmitOutputTo from emitResponse - CL-1: go.work 1.19→1.21 - Docs: Add Mermaid architecture diagrams to README - Docs: Add kernel-rebuild requires plugin-rebuild note to PLUGIN_DEV.md
59 lines
1.9 KiB
Makefile
59 lines
1.9 KiB
Makefile
.PHONY: all build build-cli clean install test run build-static build-linux-arm64 lint fmt
|
|
|
|
BINARY=homed
|
|
CLI_BINARY=waiter
|
|
GO=go
|
|
GOCACHE=/tmp/gocache
|
|
export GOPATH=/tmp/gopath
|
|
BUILD_DIR=build
|
|
PROJECT_ROOT := $(CURDIR)
|
|
VERSION ?= $(shell git describe --tags --dirty 2>/dev/null || echo "0.6.2")
|
|
COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo "unknown")
|
|
BUILD_TIME ?= $(shell date -u '+%Y-%m-%dT%H:%M:%SZ')
|
|
LDFLAGS = -X gitcode.com/JianFeeeee/HomeAgent/internal/meta.Version=$(VERSION) -X gitcode.com/JianFeeeee/HomeAgent/internal/meta.Commit=$(COMMIT) -X gitcode.com/JianFeeeee/HomeAgent/internal/meta.BuildTime=$(BUILD_TIME)
|
|
|
|
all: build build-cli
|
|
|
|
build:
|
|
@mkdir -p $(BUILD_DIR)
|
|
CGO_ENABLED=1 $(GO) build -trimpath -installsuffix dynlink -ldflags '$(LDFLAGS)' -o $(BUILD_DIR)/$(BINARY) ./cmd/homed/
|
|
@echo "Built: $(BUILD_DIR)/$(BINARY) ($(VERSION))"
|
|
|
|
build-cli:
|
|
@mkdir -p $(BUILD_DIR)
|
|
CGO_ENABLED=0 $(GO) build -installsuffix dynlink -o $(BUILD_DIR)/$(CLI_BINARY) ./cmd/waiter/
|
|
@echo "Built: $(BUILD_DIR)/$(CLI_BINARY)"
|
|
|
|
build-static:
|
|
@mkdir -p $(BUILD_DIR)
|
|
CGO_ENABLED=1 $(GO) build -tags netgo -installsuffix dynlink -ldflags '-extldflags "-static" $(LDFLAGS)' -o $(BUILD_DIR)/$(BINARY)-static ./cmd/homed/
|
|
@echo "Built (static): $(BUILD_DIR)/$(BINARY)-static"
|
|
|
|
build-linux-arm64:
|
|
@mkdir -p $(BUILD_DIR)
|
|
GOOS=linux GOARCH=arm64 CGO_ENABLED=1 $(GO) build -installsuffix dynlink -ldflags '$(LDFLAGS)' -o $(BUILD_DIR)/$(BINARY)-arm64 ./cmd/homed/
|
|
@echo "Built (arm64): $(BUILD_DIR)/$(BINARY)-arm64"
|
|
|
|
clean:
|
|
rm -rf $(BUILD_DIR) $(BINARY)
|
|
|
|
install: build
|
|
-systemctl stop homeagent 2>/dev/null
|
|
cp $(BUILD_DIR)/$(BINARY) /usr/local/bin/$(BINARY)
|
|
mkdir -p /etc/homeagent /var/lib/homeagent
|
|
cp deploy/homeagent.service /etc/systemd/system/
|
|
systemctl daemon-reload
|
|
@echo "Installed. Run: systemctl enable --now homeagent"
|
|
|
|
test:
|
|
$(GO) test ./...
|
|
|
|
run: build
|
|
./$(BUILD_DIR)/$(BINARY) -data /tmp/homeagent
|
|
|
|
fmt:
|
|
$(GO) fmt ./...
|
|
|
|
lint:
|
|
$(GO) vet ./...
|