-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
282 lines (214 loc) · 7.4 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
# This Makefile requires the following commands to be available:
# * virtualenv
# * python3.8
# * docker
# * docker-compose
REQUIREMENTS_BASE:=requirements/requirements-base.txt
REQUIREMENTS_TEST:=requirements/requirements-testing.txt
REQUIREMENTS_TXT:=requirements.txt
DOCKER_COMPOSE=$(shell which docker-compose)
PIP:="venv/bin/pip3"
TOX="venv/bin/tox"
PYTHON="venv/bin/python"
UWSGI="venv/bin/uwsgi"
TOX_PY_LIST="$(shell $(TOX) -l | grep ^py | xargs | sed -e 's/ /,/g')"
TOX_LATEST_LIST="latest38"
# Empty files used to keep track of installed types of virtualenvs (see rules below)
VENV_SYSTEM_SITE_PACKAGES=venv/.venv_system_site_packages
VENV_NO_SYSTEM_SITE_PACKAGES=venv/.venv_no_system_site_packages
VENV_DEPLOY=venv/.venv_deploy
VENV_BASE=venv/.venv_base
VENV_TEST=venv/.venv_test
VENV_TOX=venv/.venv_tox
VENV_DEV=venv/.venv_dev
# Params for building and installing on the EXA servers
VSN:=$(shell git describe --tags --always)
ARTIFACT:=polemap-$(VSN).tgz
PIP_CACHE:=.pip_cache
PIP_DOWNLOAD:=.pip_download
PYTHON_VERSION=python3.8
BRANCH=$(shell git branch | grep '*' | awk '{print $$2}')
BUILD_PROPERTIES_FILE=build.properties
BUILD_PROPERTIES_JSONFILE=build.properties.json
MAKE_MIGRATIONS=`$(shell echo $(PYTHON)) src/manage.py makemigrations;`
MIGRATIONS_CHECK=`echo $(MAKE_MIGRATIONS_OUTPUT) | awk '{print match($$0, "No changes detected")}'`
PARAMS=src/main/params.py
.PHONY: clean docsclean pyclean test lint isort docs docker check_env \
check_forgotten_migrations artifact \
requirements_clean_virtualenv requirements_create_virtualenv requirements_build
tox: $(VENV_TOX)
# tox
PYTHONPATH=./src/ $(TOX)
# Used by the deploy pipeline to prepare for deploy
build: clean artifact
pyclean:
# pyclean
@find . -name *.pyc -delete
@rm -rf *.egg-info build
@rm -rf coverage.xml .coverage
@rm -f polemap-*.tgz
docsclean:
@rm -fr docs/_build/
clean: pyclean docsclean
# clean
@rm -rf venv
@rm -rf .tox
# Used by the deploy pipeline to get information about the artifact
# created by the build step.
properties:
@echo "{\"artifact\": \"$(ARTIFACT)\", \"version\": \"$(VSN)\"}"
$(PARAMS): | src/main/params_example.py
# PARAMS
@cp $| $@
venv: $(VENV_DEV) $(PARAMS)
# venv
check_forgotten_migrations: $(PARAMS) $(VENV_BASE)
# check_forgotten_migrations
$(eval MAKE_MIGRATIONS_OUTPUT:="$(shell echo $(MAKE_MIGRATIONS))")
@echo $(MAKE_MIGRATIONS_OUTPUT)
@if [ $(MIGRATIONS_CHECK) -gt 0 ]; then \
echo "There aren't any forgotten migrations. Well done!"; \
else \
echo "Error! You've forgotten to add the migrations!"; \
exit 1; \
fi
check_requirements_txt:
# check_requirements_txt
@if [ ! -f "$(REQUIREMENTS_TXT)" ]; then \
echo "ERROR: Missing $(REQUIREMENTS_TXT), it should be committed to the repository"; \
exit 1; \
fi
@touch $(REQUIREMENTS_TXT) # to make sure that REQUIREMENTS_TXT is the requirements file with the latest timestamp
sanity_checks: check_requirements_txt check_forgotten_migrations
@echo "Checks OK"
# Used by the PR jobs. This target should include all tests necessary
# to determine if the PR should be rejected or not.
#
# To run tests locally: use 'make test/path/to/test' for a selection
# or 'tox -e py35' to run test for only python35. Of course it's still
# possible to run 'pytest path/to/test'.
test: clean sanity_checks tox
# test
test_latest: sanity_checks pyclean venv
# test_latest
$(TOX) -e $(TOX_LATEST_LIST) -- $*
test_dev: sanity_checks pyclean venv
# test_dev
$(TOX) -e dev -- $*
test/%: sanity_checks pyclean venv
$(TOX) -e $(TOX_PY_LIST) -- $*
lint: $(VENV_TOX)
@$(TOX) -e lint
@$(TOX) -e isort-check
isort: $(VENV_TOX)
@$(TOX) -e isort-fix
docs: clean $(VENV_TOX) $(PARAMS)
# @$(TOX) -e docs
docker/test:
# docker/test
$(DOCKER_COMPOSE) build && trap '$(DOCKER_COMPOSE) down' EXIT && $(DOCKER_COMPOSE) up --exit-code-from test --no-build
artifact: $(VENV_NO_SYSTEM_SITE_PACKAGES)
# artifact
@rm -rf .pip_download
@echo "$(BRANCH) $(VSN)" > REVISION
@tar -czf $(ARTIFACT) --exclude-from=.artifact_exclude * $(PIP_DOWNLOAD)
@echo "version = $(VSN)" > $(BUILD_PROPERTIES_FILE)
@echo "branch = $(BRANCH)" >> $(BUILD_PROPERTIES_FILE)
@echo "artifact = $(ARTIFACT)" >> $(BUILD_PROPERTIES_FILE)
@echo "{\"artifact\": \"$(ARTIFACT)\", \"version\": \"$(VSN)\", \"branch\": \"$(BRANCH)\"}" > $(BUILD_PROPERTIES_JSONFILE)
@echo 'Done!'
check_env:
ifndef ENV
$(error ENV is undefined)
endif
# Used by the deploy pipeline to finish installation after the artifact is extracted
install: check_env $(VENV_DEPLOY)
@echo "ENV = '$(ENV)'" > $(PARAMS)
@$(PYTHON) src/manage.py compilemessages
@$(PYTHON) src/manage.py collectstatic --noinput
@echo 'Done!'
# Used by the deploy pipeline to test if the software is working correctly
# This is called once after deployment to test and once after deployment to
# acceptance.
smoketest:
@echo "No smoketest defined"
/bin/false
runuwsgi: $(VENV_DEPLOY)
$(UWSGI) --ini etc/local.uwsgi.ini
runserver: $(VENV_DEPLOY)
SERVER_PROTOCOL="HTTP/1.1" $(PYTHON) src/manage.py runserver
createsuperuser: $(VENV_DEPLOY)
$(PYTHON) src/manage.py createsuperuser
@echo 'createsuperuser OK'
collectstatic: $(VENV_DEPLOY)
$(PYTHON) src/manage.py collectstatic --noinput
@echo 'collectstatic OK'
migrate: $(VENV_DEPLOY)
@$(PYTHON) src/manage.py migrate --noinput
@echo 'migrate OK'
makemigrations: $(VENV_DEPLOY)
@$(PYTHON) src/manage.py makemigrations
@echo 'makemigrations OK'
shell: $(VENV_DEPLOY)
@$(PYTHON) src/manage.py shell
dbshell: $(VENV_DEPLOY)
@$(PYTHON) src/manage.py dbshell
show_urls: $(VENV_DEPLOY)
@$(PYTHON) src/manage.py show_urls
shell_plus: $(VENV_DEPLOY)
@$(PYTHON) src/manage.py shell_plus
todo: $(VENV_DEPLOY)
@$(PYTHON) src/manage.py notes
graph_models: $(VENV_DEPLOY)
@$(PIP) install --upgrade pygraphviz
@$(PYTHON) src/manage.py graph_models -a -g -o graph_models.png
@$(PIP) uninstall --yes pygraphviz
@echo 'File graph_models.png created.'
################################################
# Setting up of different kinds of virtualenvs #
################################################
$(REQUIREMENTS_TXT): $(VENV_NO_SYSTEM_SITE_PACKAGES)
# REQUIREMENTS_TXT
@$(PIP) install --upgrade pip
@$(PIP) install -r $(REQUIREMENTS_BASE)
@rm -vf $(REQUIREMENTS_TXT)
@$(PIP) freeze > $(REQUIREMENTS_TXT)
@echo "Successfully Updated requirements.txt"
# these two are the main venvs
$(VENV_SYSTEM_SITE_PACKAGES):
# VENV_SYSTEM_SITE_PACKAGES
@rm -rf venv
@$(PYTHON_VERSION) -m venv --system-site-packages venv
@echo "[easy_install]" > venv/.pydistutils.cfg
@echo "find_links = file://$(PWD)/$(PIP_DOWNLOAD)/" >> venv/.pydistutils.cfg
@touch $@
$(VENV_NO_SYSTEM_SITE_PACKAGES):
# VENV_NO_SYSTEM_SITE_PACKAGES
@rm -rf venv
@$(PYTHON_VERSION) -m venv venv
@touch $@
# the rest is based on main venvs
$(VENV_DEPLOY): $(VENV_NO_SYSTEM_SITE_PACKAGES) check_requirements_txt
# VENV_DEPLOY
@$(PIP) install -q --upgrade pip
@$(PIP) install -q -r $(REQUIREMENTS_TXT)
@touch $@
$(VENV_BASE): $(VENV_NO_SYSTEM_SITE_PACKAGES) check_requirements_txt
# VENV_BASE
@$(PIP) install --upgrade pip
@$(PIP) install -r $(REQUIREMENTS_TXT)
@touch $@
$(VENV_TEST): $(VENV_NO_SYSTEM_SITE_PACKAGES) $(REQUIREMENTS_TEST)
# VENV_TEST
@$(PIP) install --upgrade pip
@$(PIP) install -r $(REQUIREMENTS_TEST)
@touch $@
$(VENV_TOX): $(VENV_NO_SYSTEM_SITE_PACKAGES)
# VENV_TOX
@$(PIP) install --upgrade pip
@$(PIP) install tox importlib.metadata==2.0.0
@touch $@
$(VENV_DEV): $(VENV_TOX) $(VENV_BASE) $(VENV_TEST)
# VENV_DEV
@$(PIP) install pytest
@touch $@