-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
72 lines (52 loc) · 1.89 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
.PHONY: all deps docker docker-cgo clean docs test test-race fmt lint install deploy-docs
TAGS =
INSTALL_DIR = $(GOPATH)/bin
DEST_DIR = ./target
PATHINSTBIN = $(DEST_DIR)/bin
PATHINSTDOCKER = $(DEST_DIR)/docker
VERSION := $(shell git describe --tags || echo "v0.0.0")
VER_CUT := $(shell echo $(VERSION) | cut -c2-)
VER_MAJOR := $(shell echo $(VER_CUT) | cut -f1 -d.)
VER_MINOR := $(shell echo $(VER_CUT) | cut -f2 -d.)
VER_PATCH := $(shell echo $(VER_CUT) | cut -f3 -d.)
VER_RC := $(shell echo $(VER_PATCH) | cut -f2 -d-)
DATE := $(shell date +"%Y-%m-%dT%H:%M:%SZ")
LD_FLAGS =
GO_FLAGS =
DOCS_FLAGS =
APPS = rewards-api
all: $(APPS)
install: $(APPS)
@mkdir -p bin
@cp $(PATHINSTBIN)/rewards-api ./bin/
deps:
@go mod tidy
@go mod vendor
SOURCE_FILES = $(shell find lib internal -type f -name "*.go")
$(PATHINSTBIN)/%: $(SOURCE_FILES)
@go build $(GO_FLAGS) -tags "$(TAGS)" -ldflags "$(LD_FLAGS) " -o $@ ./cmd/$*
$(APPS): %: $(PATHINSTBIN)/%
docker-tags:
@echo "latest,$(VER_CUT),$(VER_MAJOR).$(VER_MINOR),$(VER_MAJOR)" > .tags
docker-rc-tags:
@echo "latest,$(VER_CUT),$(VER_MAJOR)-$(VER_RC)" > .tags
docker-cgo-tags:
@echo "latest-cgo,$(VER_CUT)-cgo,$(VER_MAJOR).$(VER_MINOR)-cgo,$(VER_MAJOR)-cgo" > .tags
docker: deps
@docker build -f ./resources/docker/Dockerfile . -t dimozone/rewards-api:$(VER_CUT)
@docker tag dimozone/rewards-api:$(VER_CUT) dimozone/rewards-api:latest
docker-cgo: deps
@docker build -f ./resources/docker/Dockerfile.cgo . -t dimozone/rewards-api:$(VER_CUT)-cgo
@docker tag dimozone/rewards-api:$(VER_CUT)-cgo dimozone/rewards-api:latest-cgo
fmt:
@go list -f {{.Dir}} ./... | xargs -I{} gofmt -w -s {}
@go mod tidy
lint:
@go vet $(GO_FLAGS) ./...
test: $(APPS)
@go test $(GO_FLAGS) -timeout 3m -race ./...
@$(PATHINSTBIN)/rewards-api test ./config/test/...
clean:
rm -rf $(PATHINSTBIN)
rm -rf $(DEST_DIR)/dist
rm -rf $(PATHINSTDOCKER)