-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
76 lines (61 loc) · 1.64 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
PKG_OS := $(shell uname -s | tr A-Z a-z)
PKG_TAG=$(shell git tag -l --contains HEAD)
PKG_BINARY=./bin/strand
export GO111MODULE := on
# enable consistent Go 1.12/1.13 GOPROXY behavior.
export GOPROXY = https://proxy.golang.org,https://gocenter.io,direct
#######################################
############# Development #############
#######################################
install:
@go version
@go get -v golang.org/x/lint/golint
@curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh
@curl -L https://git.io/misspell | sh
@go mod download
@go mod tidy
.ONESHELL: install
watch:
@refresh run
.ONESHELL: watch
run:
@go run main.go
.ONESHELL: watch
dev.release:
set -e
set -u
@goreleaser release --skip-publish --rm-dist --snapshot
.ONESHELL: dev.release
#######################################
########### Utility tasks #############
#######################################
test: lint
@go test -v -timeout 30s -race -coverprofile=coverage.txt -covermode=atomic ./...
.PHONY: test
coverage:
@bash -c "bash <(curl -s https://codecov.io/bash)"
.PHONY: coverage
tidy:
@go mod tidy
.PHONY: tidy
fmt:
@find . -name '*.go' -not -wholename './vendor/*' | while read -r file; do gofmt -w -s "$$file"; goimports -w "$$file"; done
.PHONY: fmt
lint:
@go version
@./bin/golangci-lint run --tests=false --enable-all --disable=lll --disable funlen --disable godox ./...
@./bin/misspell -error **/*
.PHONY: lint
build:
@echo "Compiling application..."
@go version
@env \
CGO_ENABLED=0 \
GOOS=$(PKG_OS) \
go build \
-ldflags="-s -w" \
-a -installsuffix cgo \
-o $(PKG_BINARY)
@du -sh $(PKG_BINARY)
@echo
.PHONY: build