-
Notifications
You must be signed in to change notification settings - Fork 150
/
Makefile
44 lines (36 loc) · 1.16 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
VERSION = $(shell cat VERSION)
# makes all commands of each target exec in the same shell
# https://www.gnu.org/software/make/manual/html_node/One-Shell.html
.ONESHELL:
.PHONY: source_code_format
source_code_format:
black --line-length 120 --target-version py37 . && \
isort .
.PHONY: source_code_check_format
source_code_check_format:
black --check --line-length 120 --target-version py37 . && \
isort --check-only . && \
flake8 .
.PHONY: test
test:
${MAKE} source_code_check_format || exit 1
${MAKE} test_ci
.PHONY: test_ci
test_ci:
pytest || exit 1
.PHONY: docker_build
docker_build:
DOCKER_BUILDKIT=1 docker build \
--rm \
-t ghcr.io/els-rd/transformer-deploy:latest \
-t ghcr.io/els-rd/transformer-deploy:$(VERSION) \
-f Dockerfile .
.PHONY: docker_build_push
docker_build_push:
! docker manifest inspect ghcr.io/els-rd/transformer-deploy:$(shell cat VERSION) > /dev/null || exit 1
${MAKE} docker_build || exit 1
docker push ghcr.io/els-rd/transformer-deploy:latest || exit 1
docker push ghcr.io/els-rd/transformer-deploy:$(VERSION) || exit 1
.PHONY: documentation
documentation:
PYTHONWARNINGS=ignore::UserWarning:mkdocstrings.handlers.python mkdocs serve