加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 646 Bytes
一键复制 编辑 原始数据 按行查看 历史
kevin.qiao 提交于 2023-02-22 10:13 . support log rotate
.PHONY: build clean fmt test proto run examples test
DOCKER_REPO ?= docker.io/vesoft
IMAGE_TAG ?= latest
default: build
clean:
go mod tidy
fmt:
find . -type f -iname \*.go -exec go fmt {} \;
build: clean fmt
go build -trimpath -ldflags "-X main.GitInfoSHA=`git rev-parse --short HEAD`" -o ./bin/agent cmd/agent.go
go build -o ./bin/client examples/storage.go
chmod +x ./bin/agent
chmod +x ./bin/client
docker-build:
docker build -t "${DOCKER_REPO}/nebula-agent:${IMAGE_TAG}" .
docker-push:
docker push "${DOCKER_REPO}/nebula-agent:${IMAGE_TAG}"
proto:
sh scripts/gen_proto.sh
run: build
./bin/agent
test:
go test -v ./...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化