-
Notifications
You must be signed in to change notification settings - Fork 10
/
Makefile
60 lines (47 loc) · 1.23 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
PIP := .env/bin/pip
PYTHON := .env/bin/python
TOX := .env/bin/tox
TWINE := .env/bin/twine
# create virtual environment
.env:
virtualenv .env -p python3
install: .env
$(PIP) install -e .
# install dev dependencies, create layers directory
develop: .env
$(PIP) install -r requirements-dev.txt
# run the test suite
test: .env
$(PIP) install tox
$(TOX)
# run integration tests (require deployment)
testi: .env update
$(PIP) install tox
$(TOX) -e integration
# remove .tox and .env dirs
clean:
rm -rf .env .tox
# deploy secrets to the environment secrets vault
secrets:
$(PYTHON) scripts/deploy-secrets.py $(HUMILIS_ENV).yaml.j2 $(STAGE)
# create CF stacks
create-cf: develop
$(HUMILIS) create \
--stage $(STAGE) \
--output $(HUMILIS_ENV)-$(STAGE).outputs.yaml $(HUMILIS_ENV).yaml.j2
# deploy the test environment
create: create-cf secrets
# update CF stacks
update-cf: develop
$(HUMILIS) update \
--stage $(STAGE) \
--output $(HUMILIS_ENV)-$(STAGE).outputs.yaml $(HUMILIS_ENV).yaml.j2
# update the test deployment
update: update-cf secrets
# delete the test deployment
delete: develop
$(HUMILIS) delete --stage $(STAGE) $(HUMILIS_ENV).yaml.j2
# upload to Pypi
pypi: develop
$(PYTHON) setup.py sdist
$(TWINE) upload dist/*