mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
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}
|
|
|
|
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
|
|
go install .
|
|
|
|
test:
|
|
go test -bench=. ./...
|
|
|
|
pack-webui:
|
|
npm run --prefix webui build
|
|
go run webui/pack_webui.go
|
|
|
|
# produce a build that will fetch the web UI from the filesystem instead of from the binary
|
|
debug-webui:
|
|
go build -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/cache
|
|
|
|
clean-remote-bugs:
|
|
git ls-remote origin "refs/bugs/*" | cut -f 2 | xargs -r git push origin -d
|
|
|
|
.PHONY: build install test pack-webui debug-webui clean-local-bugs clean-remote-bugs
|