-
Notifications
You must be signed in to change notification settings - Fork 27
/
Makefile
62 lines (49 loc) · 1.67 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 configuration
# -------------------
APP_NAME = myph
APP_VERSION = 1.2.3
GIT_REVISION = `git rev-parse HEAD`
DOCKER_IMAGE_TAG ?= $(APP_VERSION)
DOCKER_LOCAL_IMAGE = $(APP_NAME):$(DOCKER_IMAGE_TAG)
# Introspection targets
# ---------------------
.PHONY: all
all: compile
.PHONY: help
help: header targets
.PHONY: header
header:
@echo "\033[34mEnvironment\033[0m"
@echo "\033[34m---------------------------------------------------------------\033[0m"
@printf "\033[33m%-23s\033[0m" "APP_NAME"
@printf "\033[35m%s\033[0m" $(APP_NAME)
@echo ""
@printf "\033[33m%-23s\033[0m" "APP_VERSION"
@printf "\033[35m%s\033[0m" $(APP_VERSION)
@echo ""
@printf "\033[33m%-23s\033[0m" "GIT_REVISION"
@printf "\033[35m%s\033[0m" $(GIT_REVISION)
@echo ""
@printf "\033[33m%-23s\033[0m" "DOCKER_IMAGE_TAG"
@printf "\033[35m%s\033[0m" $(DOCKER_IMAGE_TAG)
@echo ""
@printf "\033[33m%-23s\033[0m" "DOCKER_LOCAL_IMAGE"
@printf "\033[35m%s\033[0m" $(DOCKER_LOCAL_IMAGE)
@echo "\n"
.PHONY: targets
targets:
@echo "\033[34mmyph targets:\033[0m"
@perl -nle'print $& if m{^[a-zA-Z_-\d]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-22s\033[0m %s\n", $$1, $$2}'
.PHONY: compile
compile: ## compile the project
@go build -o $(APP_NAME) .
@printf "[ *** successfully built %s version %s *** ]\n" $(APP_NAME) $(APP_VERSION)
.PHONY: clean
clean: ## clean up the project directory
@rm -vf $(APP_NAME)
.PHONY: docker
docker: ## build a local docker image
@docker build . -t $(APP_NAME):latest -t $(APP_NAME):$(APP_VERSION)
.PHONY: release-build
release-build: ## makes a release build locally on the current commit
@goreleaser release --skip=publish --snapshot