forked from KohlsTechnology/git2consul-go
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
63 lines (50 loc) · 1.5 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
BINARY = git2consul
COMMIT := $(shell git rev-parse HEAD)
BRANCH := $(shell git symbolic-ref --short -q HEAD || echo HEAD)
DATE := $(shell date -u +%Y%m%d-%H:%M:%S)
VERSION_PKG = github.com/KohlsTechnology/git2consul-go/pkg/version
LDFLAGS := "-X ${VERSION_PKG}.Branch=${BRANCH} -X ${VERSION_PKG}.BuildDate=${DATE} \
-X ${VERSION_PKG}.GitSHA1=${COMMIT}"
TAG?=""
.PHONY: all
all: build
.PHONY: clean
clean:
rm -rf $(BINARY) dist/
.PHONY: build
build:
CGO_ENABLED=0 go build -o $(BINARY) -ldflags $(LDFLAGS)
.PHONY: vendor
vendor:
go mod vendor
.PHONY: image
image:
docker build . -t quay.io/kohlstechnology/git2consul:latest
.PHONY: test
test: lint-all test-unit
.PHONY: test-unit
test-unit:
go test -race -coverprofile=coverage.txt -covermode=atomic ./...
# Make sure go.mod and go.sum are not modified
.PHONY: test-dirty
test-dirty: vendor build
go mod tidy
git diff --exit-code
# TODO: also check that there are no untracked files, e.g. extra .go
# Make sure goreleaser is working
.PHONY: test-release
test-release:
BRANCH=$(BRANCH) COMMIT=$(COMMIT) DATE=$(DATE) VERSION_PKG=$(VERSION_PKG) goreleaser release --snapshot --skip-publish --rm-dist
.PHONY: golangci-lint
golangci-lint:
golangci-lint run
.PHONY: lint-all
lint-all: golangci-lint
.PHONY: tag
tag:
git tag -a $(TAG) -m "Release $(TAG)"
git push origin $(TAG)
# Requires GITHUB_TOKEN environment variable to be set
.PHONY: release
release:
BRANCH=$(BRANCH) COMMIT=$(COMMIT) DATE=$(DATE) VERSION_PKG=$(VERSION_PKG) goreleaser release --rm-dist