git-bug/Makefile

49 lines
1.5 KiB
Makefile
Raw Normal View History

all: build
GIT_COMMIT:=$(shell git rev-list -1 HEAD)
GIT_LAST_TAG:=$(shell git describe --abbrev=0 --tags)
GIT_EXACT_TAG:=$(shell git name-rev --name-only --tags HEAD)
COMMANDS_PATH:=github.com/MichaelMure/git-bug/commands
LDFLAGS:=-X ${COMMANDS_PATH}.GitCommit=${GIT_COMMIT} \
-X ${COMMANDS_PATH}.GitLastTag=${GIT_LAST_TAG} \
-X ${COMMANDS_PATH}.GitExactTag=${GIT_EXACT_TAG}
2018-07-16 23:39:25 +03:00
build:
go generate
go build -ldflags "$(LDFLAGS)" .
# produce a build debugger friendly
debug-build:
go generate
go build -ldflags "$(LDFLAGS)" -gcflags=all="-N -l" .
install:
go generate
2019-02-24 19:40:52 +03:00
go install -ldflags "$(LDFLAGS)" .
2018-08-19 21:40:50 +03:00
test:
2019-06-07 03:35:40 +03:00
go test -v -bench=. ./...
2018-07-17 00:20:23 +03:00
pack-webui:
2018-07-17 03:10:04 +03:00
npm run --prefix webui build
go run webui/pack_webui.go
2018-07-17 03:10:04 +03:00
# produce a build that will fetch the web UI from the filesystem instead of from the binary
debug-webui:
2019-02-24 19:40:52 +03:00
go build -ldflags "$(LDFLAGS)" -tags=debugwebui
clean-local-bugs:
git for-each-ref refs/bugs/ | cut -f 2 | xargs -r -n 1 git update-ref -d
git for-each-ref refs/remotes/origin/bugs/ | cut -f 2 | xargs -r -n 1 git update-ref -d
rm -f .git/git-bug/bug-cache
clean-remote-bugs:
git ls-remote origin "refs/bugs/*" | cut -f 2 | xargs -r git push origin -d
clean-local-identities:
git for-each-ref refs/identities/ | cut -f 2 | xargs -r -n 1 git update-ref -d
git for-each-ref refs/remotes/origin/identities/ | cut -f 2 | xargs -r -n 1 git update-ref -d
rm -f .git/git-bug/identity-cache
.PHONY: build install test pack-webui debug-webui clean-local-bugs clean-remote-bugs