-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
81 lines (55 loc) · 2.33 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
#!/usr/bin/make -f
DOCKER := $(shell which docker)
BUILDDIR ?= $(CURDIR)/build
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
COMMIT := $(shell git log -1 --format='%H')
DIRTY := -dirty
ifeq (,$(shell git status --porcelain))
DIRTY :=
endif
VERSION := $(shell git describe --tags --exact-match 2>/dev/null)
# if VERSION is empty, then populate it with branch's name and raw commit hash
ifeq (,$(VERSION))
VERSION := $(BRANCH)-$(COMMIT)
endif
VERSION := $(VERSION)$(DIRTY)
GIT_REVISION := $(shell git rev-parse HEAD)$(DIRTY)
GO_SYSTEM_VERSION = $(shell go version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f1-2)
ldflags= -X github.com/tessellated-io/paymaster/cmd/paymaster/cmd.PaymasterVersion=${VERSION} \
-X github.com/tessellated-io/paymaster/cmd/paymaster/cmd.GitRevision=${GIT_REVISION} \
-X github.com/tessellated-io/paymaster/cmd/paymaster/cmd.GoVersion=${GO_SYSTEM_VERSION}
BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)'
###############################################################################
### Build ###
###############################################################################
BUILD_TARGETS := build
build:
mkdir -p $(BUILDDIR)/
go build -mod=readonly -ldflags '$(ldflags)' -trimpath -o $(BUILDDIR) ./...;
install: go.sum
go install $(BUILD_FLAGS) ./cmd/paymaster
clean:
rm -rf $(BUILDDIR)/*
.PHONY: build
###############################################################################
### Tools & Dependencies ###
###############################################################################
go.sum: go.mod
@go mod verify
@go mod tidy
###############################################################################
### Linting ###
###############################################################################
golangci_version=v1.53.3
lint-install:
@echo "--> Installing golangci-lint $(golangci_version)"
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@$(golangci_version)
lint:
@echo "--> Running linter"
$(MAKE) lint-install
@golangci-lint run -c "./.golangci.yml"
lint-fix:
@echo "--> Running linter"
$(MAKE) lint-install
@golangci-lint run -c "./.golangci.yml" --fix
.PHONY: lint lint-fix