forked from Team-Kujira/oracle-price-feeder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
61 lines (45 loc) · 1.78 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
BUILD_DIR ?= $(CURDIR)/build
COMMIT := $(shell git log -1 --format='%H')
all: build 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)
BUILD_FLAGS := -ldflags '$(ldflags)'
CGO_FLAG = CGO_ENABLED=0
ifeq ($(shell uname),Linux)
CGO_FLAG = CGO_ENABLED=1
endif
ifeq ($(shell uname),Darwin)
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