This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 679
/
Makefile
98 lines (72 loc) · 2.27 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
ifeq ($(shell which git),)
# git is not available
VERSION ?= undefined
KS_VERSION ?= undefined
export KUMA_REVISION_HASH ?= undefined
else
# git is available
VERSION ?= $(shell git describe --tags --exact-match 2>/dev/null || git rev-parse --short HEAD)
export KUMA_REVISION_HASH ?= $(shell git rev-parse HEAD)
endif
BASE_IMAGE_NAME ?= kuma_base
KUMA_IMAGE_NAME ?= kuma
IMAGE_PREFIX ?= mdnwebdocs
BASE_IMAGE ?= ${IMAGE_PREFIX}/${BASE_IMAGE_NAME}\:${VERSION}
BASE_IMAGE_LATEST ?= ${IMAGE_PREFIX}/${BASE_IMAGE_NAME}\:latest
KUMA_IMAGE ?= ${IMAGE_PREFIX}/${KUMA_IMAGE_NAME}\:${VERSION}
KUMA_IMAGE_LATEST ?= ${IMAGE_PREFIX}/${KUMA_IMAGE_NAME}\:latest
target = kuma
# Note: these targets should be run from the kuma vm
test:
py.test $(target)
coveragetest: clean
py.test --cov=$(target) --no-cov-on-fail $(target)
# Generate the coverage.xml file from the .coverage file
# so we don't need to `pip install codecov`.
coverage xml
coveragetesthtml: coveragetest
coverage html
clean:
rm -rf .coverage build/ tmp/emails/*.log
find . \( -name \*.pyc -o -name \*.pyo -o -name __pycache__ \) -delete
collectstatic:
@ echo "## Collecting static files ##"
@ python manage.py collectstatic --noinput
build-static: collectstatic
pull-base:
docker pull ${BASE_IMAGE}
pull-kuma:
docker pull ${KUMA_IMAGE}
pull-base-latest:
docker pull ${BASE_IMAGE_LATEST}
pull-kuma-latest:
docker pull ${KUMA_IMAGE_LATEST}
pull-latest: pull-base-latest pull-kuma-latest
build-base:
docker build -f docker/images/kuma_base/Dockerfile -t ${BASE_IMAGE} .
build-kuma:
docker build --build-arg REVISION_HASH=${KUMA_REVISION_HASH} \
-f docker/images/kuma/Dockerfile -t ${KUMA_IMAGE} .
build: build-base build-kuma
push-base:
docker push ${BASE_IMAGE}
push-kuma:
docker push ${KUMA_IMAGE}
push: push-base push-kuma
tag-latest:
docker tag ${BASE_IMAGE} ${BASE_IMAGE_LATEST}
docker tag ${KUMA_IMAGE} ${KUMA_IMAGE_LATEST}
push-latest: push tag-latest
docker push ${BASE_IMAGE_LATEST}
docker push ${KUMA_IMAGE_LATEST}
up:
docker-compose up -d
bash: up
docker-compose exec web bash
shell_plus: up
docker-compose exec web ./manage.py shell_plus
pythonlint:
flake8 kuma docs
lint: pythonlint
# Those tasks don't have file targets
.PHONY: test coveragetest clean locale localetest localeextract localecompile localerefresh