-
Notifications
You must be signed in to change notification settings - Fork 22
/
Makefile
62 lines (46 loc) · 1.97 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
BUILD_DIR ?= $(CURDIR)/build
COMMIT := $(shell git log -1 --format='%H')
all: test-unit install
.PHONY: all
###############################################################################
## Version ##
###############################################################################
ifeq (,$(VERSION))
VERSION := $(shell git describe --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
endif
###############################################################################
## Build / Install ##
###############################################################################
ldflags = -X price-feeder/cmd.Version=$(VERSION) \
-X price-feeder/cmd.Commit=$(COMMIT) \
-X github.com/cosmos/cosmos-sdk/version.Name=kujira \
-X github.com/cosmos/cosmos-sdk/version.ServerName=price-feeder \
-X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \
-X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT)
BUILD_FLAGS := -ldflags '$(ldflags)'
CGO_FLAG = CGO_ENABLED=0
ifeq ($(shell uname),Linux)
CGO_FLAG = CGO_ENABLED=1
endif
build: go.sum
@echo "--> Building..."
$(CGO_FLAG) go build -mod=readonly -o $(BUILD_DIR)/ $(BUILD_FLAGS) ./...
install: go.sum
@echo "--> Installing..."
$(CGO_FLAG) go install -mod=readonly $(BUILD_FLAGS) ./...
.PHONY: build install
###############################################################################
## Tests & Linting ##
###############################################################################
test-unit:
@echo "--> Running tests"
@go test -mod=readonly -race ./... -v
.PHONY: test-unit
lint:
@echo "--> Running linter"
@go run github.com/golangci/golangci-lint/cmd/golangci-lint run --timeout=10m
.PHONY: lint