blob: 4745d195db612ace950380c2760d0fd3d4217a89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
UNAME_S := $(shell uname -s)
XARGS:=xargs -r
ifeq ($(UNAME_S),Darwin)
XARGS:=xargs
endif
SYSTEM=$(shell nix eval --impure --expr 'builtins.currentSystem' --raw 2>/dev/null || echo '')
TAG:=$(shell git name-rev --name-only --tags HEAD)
LDFLAGS:=-X main.version="${TAG}"
all: build
.PHONY: list-checks
list-checks:
@if test -z "$(SYSTEM)"; then echo "unable to detect system. is nix installed?" && exit 1; fi
@printf "Available checks for $(SYSTEM) (run all with \`nix flake check\`):\n"
@nix flake show --json 2>/dev/null |\
dasel -r json -w plain '.checks.x86_64-linux.keys().all()' |\
xargs -I NAME printf '\t%-20s %s\n' "NAME" "nix build .#checks.linux.NAME"
.PHONY: build
build:
go generate
go build -ldflags "$(LDFLAGS)" .
# produce a debugger-friendly build
.PHONY: build/debug
build/debug:
go generate
go build -ldflags "$(LDFLAGS)" -gcflags=all="-N -l" .
.PHONY: install
install:
go generate
go install -ldflags "$(LDFLAGS)" .
.PHONY: releases
releases:
go generate
go run github.com/mitchellh/gox@v1.0.1 -ldflags "$(LDFLAGS)" -osarch '!darwin/386' -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}"
.PHONY: secure
secure:
go run golang.org/x/vuln/cmd/govulncheck ./...
.PHONY: test
test:
go test -v -bench=. ./...
.PHONY: pack-webui
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
.PHONY: debug-webui
debug-webui:
go build -ldflags "$(LDFLAGS)" -tags=debugwebui
.PHONY: clean-local-bugs
clean-local-bugs:
git for-each-ref refs/bugs/ | cut -f 2 | $(XARGS) -n 1 git update-ref -d
git for-each-ref refs/remotes/origin/bugs/ | cut -f 2 | $(XARGS) -n 1 git update-ref -d
rm -f .git/git-bug/bug-cache
.PHONY: clean-remote-bugs
clean-remote-bugs:
git ls-remote origin "refs/bugs/*" | cut -f 2 | $(XARGS) git push origin -d
.PHONY: clean-local-identities
clean-local-identities:
git for-each-ref refs/identities/ | cut -f 2 | $(XARGS) -n 1 git update-ref -d
git for-each-ref refs/remotes/origin/identities/ | cut -f 2 | $(XARGS) -n 1 git update-ref -d
rm -f .git/git-bug/identity-cache
.PHONY: clean-local-identities
clean-remote-identities:
git ls-remote origin "refs/identities/*" | cut -f 2 | $(XARGS) git push origin -d
|