forked from data-prep-kit/data-prep-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
41 lines (25 loc) · 963 Bytes
/
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
# Define the root of the local git clone for the common rules to be able
# know where they are running from.
REPOROOT=../../..
# Include a library of common .transform.* targets which most
# transforms should be able to reuse. However, feel free
# to override/redefine the rules below.
include ../../.make.transforms
TRANSFORM_NAME=noop
# $(REPOROOT)/.make.versions file contains the versions
DOCKER_IMAGE_VERSION=${NOOP_VERSION}
venv:: .transforms.venv
build:: .transforms.build
test:: .transforms.test
clean:: .transforms.clean
image:: .transforms.image
test-src:: .transforms.test-src
setup:: .transforms.setup
test-image:: .transforms.test-image
publish:: .transforms.publish
run-cli-ray-sample: .transforms.run-cli-ray-sample
run-local-sample: .transforms.run-local-sample
run-local-ray-sample: .transforms.run-local-ray-sample
run-s3-ray-sample: .transforms.run-s3-ray-sample
minio-start: .minio-start
load-image:: .transforms.load-image