-
Notifications
You must be signed in to change notification settings - Fork 88
/
Makefile
63 lines (47 loc) · 1.34 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
IMAGE := amundsendev/amundsen-metadata
OIDC_IMAGE := ${IMAGE}-oidc
VERSION:= $(shell grep -m 1 '__version__' setup.py | cut -d '=' -f 2 | tr -d "'" | tr -d '[:space:]')
.PHONY: clean
clean:
find . -name \*.pyc -delete
find . -name __pycache__ -delete
rm -rf dist/
.PHONY: test_unit
test_unit:
python3 -b -m pytest tests
lint:
python3 -m flake8
.PHONY: mypy
mypy:
mypy --ignore-missing-imports --follow-imports=skip --strict-optional --warn-no-return .
.PHONY: isort
isort:
isort .
.PHONY: isort_check
isort_check:
isort ./ --check --diff
.PHONY: test
test: test_unit lint mypy isort_check
.PHONY: image
image:
docker build -f public.Dockerfile -t ${IMAGE}:latest .
.PHONY: image-version
image-version:
docker build -f public.Dockerfile -t ${IMAGE}:${VERSION} .
.PHONY: push-image-version
push-image-version:
docker push ${IMAGE}:${VERSION}
.PHONY: push-image
push-image:
docker push ${IMAGE}:latest
.PHONY: oidc-image
oidc-image:
docker build -f public.Dockerfile --target=oidc-release -t ${OIDC_IMAGE}:${VERSION} .
docker tag ${OIDC_IMAGE}:${VERSION} ${OIDC_IMAGE}:latest
.PHONY: push-odic-image
push-oidc-image:
docker push ${OIDC_IMAGE}:${VERSION}
docker push ${OIDC_IMAGE}:latest
.PHONY: build-push-image
build-push-image-latest: image oidc-image push-image push-oidc-image
build-push-image-version: image-version push-image-version