3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-21 19:39:43 +01:00

include git tag in binary when available

This commit is contained in:
Shivaram Lingamneni 2021-11-03 02:15:46 -04:00
parent 9c4fbeabef
commit f9ca172ad7

View File

@ -1,16 +1,17 @@
.PHONY: all install build release capdefs test smoke gofmt irctest
GIT_COMMIT := $(shell git rev-parse HEAD 2> /dev/null)
GIT_TAG := $(shell git tag --points-at HEAD 2> /dev/null | head -n 1)
capdef_file = ./irc/caps/defs.go
all: install
install:
go install -v -ldflags "-X main.commit=$(GIT_COMMIT)"
go install -v -ldflags "-X main.commit=$(GIT_COMMIT) -X main.version=$(GIT_TAG)"
build:
go build -v -ldflags "-X main.commit=$(GIT_COMMIT)"
go build -v -ldflags "-X main.commit=$(GIT_COMMIT) -X main.version=$(GIT_TAG)"
release:
goreleaser --skip-publish --rm-dist