-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
52 lines (43 loc) · 1.09 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
HUMILIS := .env/bin/humilis
PIP := .env/bin/pip
PYTHON := .env/bin/python
TWINE := .env/bin/twine
TOX := .env/bin/tox
STAGE := DEV
HUMILIS_ENV := tests/integration/humilis-firehose
# create virtual environment
.env:
virtualenv .env -p python3
# install dev dependencies, create layers directory
develop: .env
.env/bin/pip install -r requirements-test.txt
# run integration tests
test: .env
$(PIP) install tox
$(TOX)
# remove .tox and .env dirs
clean:
rm -rf .env .tox
# configure humilis
configure:
$(HUMILIS) configure --local
# deploy the test environment
create: develop
$(HUMILIS) create \
--stage $(STAGE) \
--output $(HUMILIS_ENV)-$(STAGE).outputs.yaml \
$(HUMILIS_ENV).yaml
# update the test deployment
update: develop
$(HUMILIS) update \
--stage $(STAGE) \
--output $(HUMILIS_ENV)-$(STAGE).outputs.yaml \
$(HUMILIS_ENV).yaml
# delete the test deployment
delete: develop
$(PYTHON) ./scripts/empty-bucket.py $(HUMILIS_ENV)-$(STAGE).outputs.yaml
$(HUMILIS) delete --stage $(STAGE) $(HUMILIS_ENV).yaml
# upload to Pypi
pypi: develop
$(PYTHON) setup.py sdist
$(TWINE) upload dist/*