git-bug/Makefile

30 lines
681 B
Makefile
Raw Normal View History

all: build
2018-07-16 23:39:25 +03:00
build:
go generate
go build .
install:
go generate
go install .
2018-08-19 21:40:50 +03:00
test:
go test -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:
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
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