-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
224 lines (164 loc) · 5.14 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
VERSION ?= 1.0.0-dev
IMAGE_NAME := flexconstructor/openvidu-tutorial
PROJ_NAME := github.com/flexconstructor/openvidu-tutorial
BUILD_DIR := _build
RELEASE_DIR := _release
RELEASE_BRANCH := master
MAINLINE_BRANCH := dev
CURRENT_BRANCH := $(shell git branch | grep \* | cut -d ' ' -f2)
GOLANG_VER ?= 1.9
no-cache ?= no
port ?= !default
bench ?= !default
docker ?= yes
comma := ,
empty :=
space := $(empty) $(empty)
eq = $(if $(or $(1),$(2)),$(and $(findstring $(1),$(2)),\
$(findstring $(2),$(1))),1)
# Run project in Dockerized development environment.
#
# Usage:
# make run
run: | build
docker-compose down
docker-compose up --build
# Resolve all project dependencies.
#
# Usage:
# make deps
deps: | deps.glide deps.tools
# Resolve Golang Glide project dependencies.
#
# Usage:
# make deps.glide [cmd=]
cmd ?= install
deps.glide:
docker run --rm -v "$(PWD)":/go/src/$(PROJ_NAME) -w /go/src/$(PROJ_NAME) \
-v "$(PWD)/_cache/glide:/root/.glide/cache" \
instrumentisto/glide $(cmd)
# Resolve Golang binary toolchain of project development dependencies.
#
# Usage:
# make deps.tools
tools := \
github.com/smartystreets/goconvey \
github.com/alecthomas/gometalinter \
github.com/yookoala/realpath \
github.com/go-playground/overalls
deps.tools:
mkdir -p vendor/_bin
(set -e ; $(foreach tool, $(tools), \
docker run --rm -v "$(PWD)/vendor":/go/src -w /go/src/$(tool) \
golang:$(GOLANG_VER) \
go build -o /go/src/_bin/$(word 3,$(subst /, ,$(tool))); \
))
docker run --rm -v "$(PWD)/vendor":/go/src -v "$(PWD)/vendor/_bin":/go/bin \
golang:$(GOLANG_VER) \
gometalinter --install
# Build project.
#
# Usage:
# make build [VERSION=]
build:
mkdir -p $(BUILD_DIR)
rm -rf $(BUILD_DIR)/*
docker run --rm -v "$(PWD)":/go/src/$(PROJ_NAME) -w /go/src/$(PROJ_NAME) \
golang:$(GOLANG_VER) \
go build -installsuffix netgo -tags='netgo jsoniter' \
-o $(BUILD_DIR)/openvidu_tutorial main.go
printf "$(VERSION)" > $(BUILD_DIR)/version
# Format all project Golang sources with Gofmt.
#
# Usage:
# make fmt
fmt:
docker run --rm -v "$(PWD)":/go/src/$(PROJ_NAME) -w /go/src/$(PROJ_NAME) \
golang:$(GOLANG_VER) \
go fmt ./...
# Lint all project Golang sources with Go Meta Linter.
#
# Commands `go install .` and `go test -i` required for some Go Meta Linter
# tools to run correctly. Details may be found here:
# https://github.com/alecthomas/gometalinter/issues/91
#
# Usage:
# make lint
lint:
ifneq ($(wildcard vendor/$(PROJ_NAME)),)
rm -rf vendor/$(PROJ_NAME)
endif
docker run --rm -v "$(PWD)":/go/src/$(PROJ_NAME) -w /go/src/$(PROJ_NAME) \
-v "$(PWD)/vendor":/go/src \
-v "$(PWD)/vendor/_bin":/go/bin \
golang:$(GOLANG_VER) \
gometalinter --config=.gometalinter.json ./...
ifneq ($(wildcard vendor/$(PROJ_NAME)),)
rm -rf vendor/$(PROJ_NAME)
endif
# Run all project tests.
#
# Optional 'bench' parameter may be used to run Go benchmarks.
# It assumes the same values as `-bench` flag of `go test`.
# For example: `make test bench=.`.
#
# Usage:
# make test [bench=]
test-bench-arg = $(if $(call eq,$(bench),!default),,-benchmem -bench=$(bench))
test:
docker run --rm -v "$(PWD)":/go/src/$(PROJ_NAME) -w /go/src/$(PROJ_NAME) \
-v "$(PWD)/vendor":/go/src \
-v "$(PWD)/vendor/_bin":/go/bin \
golang:$(GOLANG_VER) \
overalls \
-project=$(PROJ_NAME) \
-covermode=atomic \
-ignore='.git,vendor_tools,vendor,node_modules,_cache' \
-- -race $(test-bench-arg)
docker run --rm -v "$(PWD)":/go/src/$(PROJ_NAME) -w /go/src/$(PROJ_NAME) \
golang:$(GOLANG_VER) \
go tool cover -func=overalls.coverprofile
# Run GoConvey Web UI for project Golang tests.
#
# Usage:
# make run.goconvey [port=<8080>] [docker=(yes|no)]
goconvey-port = $(if $(call eq,$(port),!default),8080,$(port))
run.goconvey:
ifeq ($(docker),yes)
docker run --rm -v "$(PWD)":/go/src/$(PROJ_NAME) -w /go/src/$(PROJ_NAME) \
-v "$(PWD)/vendor/github.com/smartystreets/goconvey":/go/src/github.com/smartystreets/goconvey \
-v "$(PWD)/vendor/_bin/goconvey":/go/bin/goconvey \
-p $(goconvey-port):$(goconvey-port) \
golang:$(GOLANG_VER) \
goconvey \
-host 0.0.0.0 -port $(goconvey-port) \
-cover \
-excludedDirs=".git,vendor_tools,vendor,node_modules,_cache,resources"
else
goconvey \
-port $(goconvey-port) \
-cover \
-excludedDirs=".git,vendor_tools,vendor,node_modules,_cache,resources"
endif
# Squash changes of the current Git branch onto another Git branch.
#
# WARNING: You must merge `onto` branch in the current branch before squash!
#
# Usage:
# make squash [onto=] [del=(no|yes)]
onto ?= $(MAINLINE_BRANCH)
del ?= no
upstream ?= origin
squash:
ifeq ($(CURRENT_BRANCH),$(onto))
@echo "--> Current branch is '$(onto)' already" && false
endif
git checkout $(onto)
git branch -m $(CURRENT_BRANCH) orig-$(CURRENT_BRANCH)
git checkout -b $(CURRENT_BRANCH)
git branch --set-upstream-to $(upstream)/$(CURRENT_BRANCH)
git merge --squash orig-$(CURRENT_BRANCH)
ifeq ($(del),yes)
git branch -d orig-$(CURRENT_BRANCH)
endif
.PHONY: deps deps.glide deps.tools build fmt test run.goconvey run