-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
62 lines (49 loc) · 1.77 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
GOCMD=go
GOTEST=$(GOCMD) test
GOVET=$(GOCMD) vet
BINARY_NAME=greenhouse_backend
VERSION?=0.0.0
SRV_DEPLOY=192.168.0.27
GREEN := $(shell tput -Txterm setaf 2)
YELLOW := $(shell tput -Txterm setaf 3)
WHITE := $(shell tput -Txterm setaf 7)
CYAN := $(shell tput -Txterm setaf 6)
RESET := $(shell tput -Txterm sgr0)
.PHONY: all test build
all: help
## Help:
help: ## Show this help.
@echo ''
@echo 'Usage:'
@echo ' ${YELLOW}make${RESET} ${GREEN}<target>${RESET}'
@echo ''
@echo 'Targets:'
@awk 'BEGIN {FS = ":.*?## "} { \
if (/^[a-zA-Z_-]+:.*?##.*$$/) {printf " ${YELLOW}%-20s${GREEN}%s${RESET}\n", $$1, $$2} \
else if (/^## .*$$/) {printf " ${CYAN}%s${RESET}\n", substr($$1,4)} \
}' $(MAKEFILE_LIST)
## Build:
build: build-server ## Build the project and put the output binary in out/bin/
@mkdir -p out
@cp greenhouse.toml out/
build-server: ## Build only the golang server
@mkdir -p out
$(GOCMD) build -v -o out/$(BINARY_NAME) .
@cp greenhouse.service out/
clean: ## Remove build related file
rm -fr ./bin
rm -fr ./out
rm -f ./junit-report.xml checkstyle-report.xml ./coverage.xml ./profile.cov yamllint-checkstyle.xml
## Upload:
upload: upload-server upload-data ## Upload binaries using ssh
upload-server: build-server ## Upload server binary
@rsync -avP ./out/$(BINARY_NAME) root@$(SRV_DEPLOY):/usr/local/bin/$(BINARY_NAME)
@ssh root@$(SRV_DEPLOY) chmod 755 /usr/local/bin/$(BINARY_NAME)
upload-data: ## Upload data files
@rsync -avP ./notifications/*.notif root@$(SRV_DEPLOY):/usr/local/share/greenhouse/
## Test:
test: ## Run the tests of the project
$(GOTEST) -v -race ./... $(OUTPUT_OPTIONS)
coverage: ## Run the tests of the project and export the coverage
$(GOTEST) -cover -covermode=count -coverprofile=profile.cov ./...
$(GOCMD) tool cover -func profile.cov