You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
2.2 KiB

DOCKER_IMAGE ?= projecthami/hami-webui-be
CMD_PATH ?= ./cmd/
BUILD_PATH ?= ./build/
VERSION ?= $(shell git describe --tags --always)
DIRS = $(shell ls $(CMD_PATH))
TARGET_ARCH ?= amd64
# 1. Install Go dependencies
.PHONY: install-deps
install-deps:
go install github.com/google/wire/cmd/wire@latest
go install github.com/envoyproxy/protoc-gen-validate@latest
go install github.com/go-kratos/kratos/cmd/kratos/v2@latest
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
go install github.com/go-kratos/kratos/cmd/protoc-gen-go-http/v2@latest
# 2. Generate proto and wire files
.PHONY: generate
generate: generate-proto generate-wire
.PHONY: generate-proto
generate-proto:
kratos proto client .
.PHONY: generate-wire
generate-wire: tidy-mod
@ for dir in $(DIRS); \
do \
cd ${CMD_PATH}$$dir/ && wire . && cd ../../; \
done
# 3. Clean Go modules
.PHONY: tidy-mod
tidy-mod:
go mod tidy
# 4. Build-related commands
.PHONY: build-linux
build-linux:
@echo "Building for GOOS=linux GOARCH=$(TARGET_ARCH)" # TARGET_ARCH 会从 make 命令传入
@for dir in $(DIRS); \
do \
CGO_ENABLED=0 GOOS=linux GOARCH=$(TARGET_ARCH) go build -o $(BUILD_PATH)$$dir ${CMD_PATH}$$dir; \
echo "Built $$dir for Linux/$(TARGET_ARCH)"; \
done
.PHONY: build-local
build-local:
@ for dir in $(DIRS); \
do \
go build -o $(BUILD_PATH)$$dir ${CMD_PATH}$$dir; \
echo "Built $$dir"; \
done
# 5. Docker image commands
.PHONY: build-image
build-image:
nerdctl -nk8s.io build --platform linux/amd64 -t ${DOCKER_IMAGE}:${VERSION} .
.PHONY: push-image
push-image:
nerdctl -nk8s.io push ${DOCKER_IMAGE}:${VERSION}
.PHONY: save-image
save-image:
nerdctl -nk8s.io save -o $(BUILD_PATH)hami_webui_release_${VERSION}.tar ${DOCKER_IMAGE}:${VERSION}
gzip -f $(BUILD_PATH)hami_webui_release_${VERSION}.tar
# 6. Debugging and Testing
.PHONY: run
run: install-deps generate run-debug
.PHONY: run-debug
run-debug:
kratos run
.PHONY: run-tests
run-tests:
go test .
.PHONY: run-vet
run-vet:
go vet ./...
# 7. Cleaning
.PHONY: clean-build
clean-build:
rm -rf $(BUILD_PATH)
# 8. Complete build workflow
.PHONY: build
build: install-deps generate build-linux
# 9. Release workflow
.PHONY: release
release: build-image push-image