-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
91 lines (68 loc) · 2.57 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
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
80
81
82
83
84
85
86
87
88
89
90
91
###############################################################################
# VARIABLES
###############################################################################
export GO111MODULE := on
export GOPROXY = https://proxy.golang.org,direct
PKG_PATH = github.com/nikoksr/proji
GIT_TAG = $(shell git describe --tags --abbrev=0 --dirty="+CHANGES")
LDFLAGS = -X $(PKG_PATH)/internal/buildinfo.AppVersion=$(GIT_TAG)
###############################################################################
# DEPENDENCIES
###############################################################################
setup:
go mod tidy
@go install mvdan.cc/gofumpt@latest
@go install github.com/daixiang0/gci@latest
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
.PHONY: setup
###############################################################################
# TESTS
###############################################################################
test:
go test -failfast -race ./...
.PHONY: test
gen-coverage:
@go test -race -covermode=atomic -coverprofile=coverage.out ./... > /dev/null
.PHONY: gen-coverage
coverage: gen-coverage
go tool cover -func coverage.out
.PHONY: coverage
coverage-html: gen-coverage
go tool cover -html=coverage.out -o cover.html
.PHONY: coverage-html
###############################################################################
# CODE HEALTH
###############################################################################
fmt:
@gofumpt -w -l . > /dev/null
@goimports -w -l -local github.com/nikoksr/proji . > /dev/null
@gci write --section standard --section default --section "Prefix(github.com/nikoksr/proji)" . > /dev/null
.PHONY: fmt
lint:
@golangci-lint run --config .golangci.yml
.PHONY: lint
ci: fmt test lint
.PHONY: ci
###############################################################################
# BUILDS
###############################################################################
prepare-build:
mkdir -p ./bin/debug ./bin/release ./docs
.PHONY: prepare-build
check-optimizations: prepare-build
go build -gcflags='-m -m' -o ./bin/debug/proji ./cmd/proji
.PHONY: check-optimizations
build-debug: prepare-build
CGO_ENABLED=0 go build -ldflags="$(LDFLAGS)" -o ./bin/debug/proji ./cmd/proji
.PHONY: build-debug
build-release: prepare-build
CGO_ENABLED=0 go build -ldflags="-s -w $(LDFLAGS)" -o ./bin/release/proji ./cmd/proji
.PHONY: build-release
install:
CGO_ENABLED=0 go install -ldflags="-s -w $(LDFLAGS)" ./cmd/proji
.PHONY: install
clean:
rm -rf ./bin 2> /dev/null
rm cover.html coverage.out 2> /dev/null
.PHONY: clean
.DEFAULT_GOAL := install