-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
49 lines (39 loc) · 1.13 KB
/
Makefile
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
VERSION = $(shell godzil show-version)
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
BUILD_LDFLAGS = "-s -w -X main.revision=$(CURRENT_REVISION)"
VERBOSE_FLAG = $(if $(VERBOSE),-v)
u := $(if $(update),-u)
.PHONY: deps
deps:
go get ${u} -d $(VERBOSE_FLAG)
go mod tidy
.PHONY: devel-deps
devel-deps: deps
go install honnef.co/go/tools/cmd/staticcheck@latest
go install github.com/Songmu/godzil/cmd/godzil@latest
go install github.com/tcnksm/ghr@latest
.PHONY: test
test: deps
go test $(VERBOSE_FLAG) ./...
.PHONY: lint
lint: devel-deps
staticcheck -checks all ./...
.PHONY: build
build: deps
go build $(VERBOSE_FLAG) -ldflags=$(BUILD_LDFLAGS) ./cmd/gobump
.PHONY: install
install: deps
go install $(VERBOSE_FLAG) -ldflags=$(BUILD_LDFLAGS) ./cmd/gobump
.PHONY: release
release: devel-deps
godzil release
CREDITS: devel-deps go.sum
godzil credits -w
DIST_DIR = dist/v$(VERSION)
.PHONY: crossbuild
crossbuild: CREDITS
rm -rf $(DIST_DIR)
godzil crossbuild -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) -d $(DIST_DIR) ./cmd/*
.PHONY: upload
upload:
ghr -body="$$(godzil changelog --latest -F markdown)" v$(VERSION) $(DIST_DIR)