-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
54 lines (43 loc) · 1.12 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
50
51
52
53
54
VERSION = $(shell godzil show-version)
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
BUILD_LDFLAGS = "-s -w -X github.com/dekokun/json2env.revision=$(CURRENT_REVISION)"
u := $(if $(update),-u)
export GO111MODULE=on
.PHONY: deps
deps:
go get ${u} -d
go mod tidy
.PHONY: devel-deps
devel-deps:
sh -c '\
tmpdir=$$(mktemp -d); \
cd $$tmpdir; \
go get ${u} \
golang.org/x/lint/golint \
github.com/Songmu/godzil/cmd/godzil \
github.com/tcnksm/ghr; \
rm -rf $$tmpdir'
.PHONY: test
test:
go test
.PHONY: lint
lint: devel-deps
golint -set_exit_status
.PHONY: build
build:
go build -ldflags=$(BUILD_LDFLAGS) ./cmd/json2env
.PHONY: install
install:
go install -ldflags=$(BUILD_LDFLAGS) ./cmd/json2env
.PHONY: release
release: devel-deps
godzil release
CREDITS: go.sum deps devel-deps
godzil credits -w
.PHONY: crossbuild
crossbuild: CREDITS
godzil crossbuild -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) \
-os=linux,darwin -d=./dist/v$(VERSION) ./cmd/*
.PHONY: upload
upload:
ghr -body="$$(godzil changelog --latest -F markdown)" v$(VERSION) dist/v$(VERSION)