forked from LeanerCloud/AutoSpotting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
126 lines (99 loc) · 4.62 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
DEPS := "wget git go docker golint zip"
BINARY := AutoSpotting
COVER_PROFILE := /tmp/coverage.out
BUCKET_NAME ?= cloudprowess
FLAVOR ?= custom
LOCAL_PATH := build/s3/$(FLAVOR)
LICENSE_FILES := LICENSE THIRDPARTY
SHA := $(shell git rev-parse HEAD | cut -c 1-7)
BUILD := $(or $(TRAVIS_BUILD_NUMBER), $(TRAVIS_BUILD_NUMBER), $(SHA))
ifneq ($(FLAVOR), custom)
LICENSE_FILES += BINARY_LICENSE
endif
LDFLAGS="-X main.Version=$(FLAVOR)-$(BUILD) -s -w"
all: fmt-check vet-check build test ## Build the code
.PHONY: all
clean: ## Remove installed packages/temporary files
go clean ./...
rm -rf $(BINDATA_DIR) $(LOCAL_PATH)
.PHONY: clean
check_deps: ## Verify the system has all dependencies installed
@for DEP in "$(DEPS)"; do \
if ! command -v "$$DEP" >/dev/null ; then echo "Error: dependency '$$DEP' is absent" ; exit 1; fi; \
done
@echo "all dependencies satisifed: $(DEPS)"
.PHONY: check_deps
build_deps:
@command -v goveralls || go get github.com/mattn/goveralls
@command -v golint || go get golang.org/x/lint/golint
@go tool cover -V || go get golang.org/x/tools/cmd/cover
.PHONY: build_deps
update_deps: ## Update all dependencies
@go get -u
@go mod tidy
.PHONY: update_deps
build: build_deps ## Build the AutoSpotting binary
GOOS=linux go build -ldflags=$(LDFLAGS) -o $(BINARY)
.PHONY: build
archive: build ## Create archive to be uploaded
@rm -rf $(LOCAL_PATH)
@mkdir -p $(LOCAL_PATH)
@zip $(LOCAL_PATH)/lambda.zip $(BINARY) $(LICENSE_FILES)
@cp -f cloudformation/stacks/AutoSpotting/template.yaml $(LOCAL_PATH)/
@cp -f cloudformation/stacks/AutoSpotting/template.yaml $(LOCAL_PATH)/template_build_$(BUILD).yaml
@zip -j $(LOCAL_PATH)/regional_stack_lambda.zip cloudformation/stacks/AutoSpotting/regional_stack_lambda.py
@cp -f cloudformation/stacks/AutoSpotting/regional_template.yaml $(LOCAL_PATH)/
@sed -i "s#lambda\.zip#lambda_build_$(BUILD).zip#" $(LOCAL_PATH)/template_build_$(BUILD).yaml
@cp -f $(LOCAL_PATH)/lambda.zip $(LOCAL_PATH)/lambda_build_$(BUILD).zip
@cp -f $(LOCAL_PATH)/lambda.zip $(LOCAL_PATH)/lambda_build_$(SHA).zip
@cp -f $(LOCAL_PATH)/regional_stack_lambda.zip $(LOCAL_PATH)/regional_stack_lambda_build_$(BUILD).zip
@cp -f $(LOCAL_PATH)/regional_stack_lambda.zip $(LOCAL_PATH)/regional_stack_lambda_build_$(SHA).zip
.PHONY: archive
upload: archive ## Upload binary
aws s3 sync build/s3/ s3://$(BUCKET_NAME)/
.PHONY: upload
vet-check: build_deps ## Verify vet compliance
ifeq ($(shell go vet -all . | wc -l | tr -d '[:space:]'), 0)
@printf "ok\tall files passed go vet\n"
else
@printf "error\tsome files did not pass go vet\n"
@go vet -all . 2>&1
@exit 1
endif
.PHONY: vet-check
fmt-check: build_deps ## Verify fmt compliance
ifeq ($(shell gofmt -l -s . | wc -l | tr -d '[:space:]'), 0)
@printf "ok\tall files passed go fmt\n"
else
@printf "error\tsome files did not pass go fmt, fix the following formatting diff:\n"
@gofmt -l -s -d .
@exit 1
endif
.PHONY: fmt-check
test: ## Test go code and coverage
@go test -covermode=count -coverprofile=$(COVER_PROFILE) ./...
.PHONY: test
lint: build_deps
@golint -set_exit_status ./...
.PHONY: lint
full-test: fmt-check vet-check test lint ## Pass test / fmt / vet / lint
.PHONY: full-test
html-cover: test ## Display coverage in HTML
@go tool cover -html=$(COVER_PROFILE)
.PHONY: html-cover
travisci-cover: html-cover ## Test & generate coverage in the TravisCI format, fails unless executed from TravisCI
ifdef COVERALLS_TOKEN
@goveralls -coverprofile=$(COVER_PROFILE) -service=travis-ci -repotoken=$(COVERALLS_TOKEN)
endif
.PHONY: travisci-cover
travisci-checks: fmt-check vet-check lint ## Pass fmt / vet & lint format
.PHONY: travisci-checks
travisci: archive travisci-checks travisci-cover ## Executes inside the TravisCI Docker builder
.PHONY: travisci
travisci-docker: ## Executed by TravisCI
@docker-compose up --build --exit-code-from autospotting
.PHONY: travisci-docker
help: ## Show this help
@printf "Rules:\n"
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
.PHONY: help