Files
worker/Makefile
Gleb Tv 16922d5081 fix(ci): publish valid worker images
Normalize registry and release tag references before Buildx runs. Use process-local liveness so a control-plane outage does not restart a healthy worker container.
2026-07-13 18:18:52 +03:00

45 строки
1.1 KiB
Makefile

BINARY := bin/rsmon-worker
VERSION ?= dev
COMMIT ?= $(shell git rev-parse --short=12 HEAD 2>/dev/null || printf unknown)
BUILD_DATE ?= $(shell date -u +%Y-%m-%dT%H:%M:%SZ)
LDFLAGS := -s -w -X main.version=$(VERSION) -X main.commit=$(COMMIT) -X main.buildDate=$(BUILD_DATE)
.PHONY: build test check image clean
build:
mkdir -p bin
CGO_ENABLED=0 go build -trimpath -ldflags="$(LDFLAGS)" -o $(BINARY) ./cmd/rsmon-worker
test:
RSMON_ENV=test CWD=$(CURDIR) go test \
./cmd/rsmon-worker \
./internal/distworker \
./internal/webapp \
./internal/workercluster \
./internal/wire \
./internal/checkexec \
./checks/calls \
./checks/cbssl \
./checks/cdns \
./checks/cftp \
./checks/chttp \
./checks/cping \
./checks/cssh \
./checks/cssl \
./checks/ctcp \
./checks/cudp \
./checks/cwhois \
./checks/llmhttp
check:
go mod tidy
git diff --exit-code -- go.mod go.sum
$(MAKE) test
$(MAKE) build
image:
docker build --build-arg VERSION=$(VERSION) --build-arg COMMIT=$(COMMIT) --build-arg BUILD_DATE=$(BUILD_DATE) -t rsmon-worker:local .
clean:
rm -rf bin dist