-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
41 lines (33 loc) · 900 Bytes
/
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
VERSION = $(shell godzil show-version)
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
BUILD_LDFLAGS = "-s -w -X github.com/Songmu/horenso.revision=$(CURRENT_REVISION)"
ifdef update
u=-u
endif
.PHONY: deps
deps:
go get ${u} -d
go mod tidy
.PHONY: devel-deps
devel-deps:
go install github.com/Songmu/godzil/cmd/godzil@latest
go install github.com/tcnksm/ghr@latest
.PHONY: test
test:
go test
.PHONY: build
build:
go build -ldflags=$(BUILD_LDFLAGS) ./cmd/horenso
.PHONY: release
release: devel-deps
godzil release
CREDITS: deps devel-deps go.sum
godzil credits -w
.PHONY: crossbuild
crossbuild: devel-deps CREDITS
godzil crossbuild -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) \
-os=linux,darwin,windows -arch=amd64,arm64 \
-d=./dist/v$(VERSION) ./cmd/horenso
.PHONY: upload
upload:
ghr -body="$$(godzil changelog --latest -F markdown)" v$(VERSION) dist/v$(VERSION)