-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
43 lines (32 loc) · 942 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
42
43
VERSION = $(shell gobump show -r)
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
BUILD_LDFLAGS = "-X github.com/shibayu36/notify-issues-to-slack.revision=$(CURRENT_REVISION)"
ifdef update
u=-u
endif
export GO111MODULE=on
devel-deps:
go install ${u} golang.org/x/lint/golint \
github.com/mattn/goveralls \
github.com/x-motemen/gobump/cmd/gobump \
github.com/Songmu/goxz/cmd/goxz \
github.com/Songmu/ghch/cmd/ghch \
github.com/tcnksm/ghr
test:
go test -v ./...
lint: devel-deps
go vet
golint -set_exit_status
cover: devel-deps
goveralls
build:
go build -ldflags=$(BUILD_LDFLAGS) .
bump: devel-deps
_tools/releng
crossbuild:
goxz -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) -arch=amd64,386 \
-d=./dist/v$(VERSION) .
upload:
ghr v$(VERSION) dist/v$(VERSION)
release: bump crossbuild upload
.PHONY: test devel-deps lint cover build bump crossbuild upload release