forked from data-prep-kit/data-prep-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
53 lines (31 loc) · 1.32 KB
/
Makefile
File metadata and controls
53 lines (31 loc) · 1.32 KB
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
# Define the root of the local git clone for the common rules to be able
# know where they are running from.
REPOROOT=../../../..
include $(REPOROOT)/transforms/.make.transforms
TRANSFORM_NAME=code_quality
# Use default rule inherited from makefile.common
clean:: .transforms.clean
# Use default rule inherited from makefile.common
test:: .transforms.python-test
# Use default rule inherited from makefile.common
image:: .transforms.python-image
# Use default rule inherited from makefile.common
venv:: .transforms.python-venv
test-src:: .transforms.test-src
test-image:: .transforms.python-test-image
build:: build-dist image
publish: publish-image
publish-image:: .transforms.publish-image-python
setup:: .transforms.setup
# distribution versions is the same as image version.
set-versions:
$(MAKE) TRANSFORM_PYTHON_VERSION=$(CODE_QUALITY_PYTHON_VERSION) TOML_VERSION=$(CODE_QUALITY_PYTHON_VERSION) .transforms.set-versions
build-dist:: .defaults.build-dist
publish-dist:: .defaults.publish-dist
setup:: .transforms.setup
run-cli-sample: .transforms.run-cli-python-sample
run-local-sample: .transforms.run-local-sample
run-local-python-sample: .transforms.run-local-python-sample
kind-load-image:: .transforms.kind-load-image
docker-load-image: .defaults.docker-load-image
docker-save-image: .defaults.docker-save-image