加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 562 Bytes
一键复制 编辑 原始数据 按行查看 历史
chavacava 提交于 2022-04-10 09:06 . Fix/677 (#678)
.PHONY: test
export GO111MODULE=on
GIT_COMMIT ?= $(shell git rev-parse --verify HEAD)
GIT_VERSION ?= $(shell git describe --tags --always --dirty="-dev")
DATE ?= $(shell date -u '+%Y-%m-%d %H:%M UTC')
BUILDER ?= Makefile
VERSION_FLAGS := -X "github.com/mgechev/revive/cli.version=$(GIT_VERSION)" -X "github.com/mgechev/revive/cli.date=$(DATE)" -X "github.com/mgechev/revive/cli.commit=$(GIT_COMMIT)" -X "github.com/mgechev/revive/cli.builtBy=$(BUILDER)"
install:
@go mod vendor
build:
@go build -ldflags='$(VERSION_FLAGS)'
test:
@go test -v -race ./...
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化