forked from kafka4beam/wolff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
60 lines (46 loc) · 764 Bytes
/
Copy pathMakefile
File metadata and controls
60 lines (46 loc) · 764 Bytes
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
KAFKA_IMAGE_VERSION ?= 1.2.1
export KAFKA_IMAGE_VERSION
KAFKA_VERSION ?= 4.0.0
export KAFKA_VERSION
all: eunit ct cover
.PHONY: compile
compile: deps
@rebar3 compile
.PHONY: deps
deps:
@rebar3 get-deps
.PHONY: edoc
edoc:
@rebar3 edoc
.PHONY: dialyzer
dialyzer: compile
@rebar3 dialyzer
.PHONY: ct
ct:
@rebar3 ct -v -c
.PHONY: eunit
eunit:
@rebar3 eunit -v -c
.PHONY: clean
clean:
@rebar3 clean
@rm -rf test-data
@rm -rf _build
@rm -f rebar.lock
.PHONY: xref
xref: compile
@rebar3 xref
.PHONY: hex
hex: clean
@rebar3 hex publish package
.PHONY: cover
cover:
@rebar3 cover -v
.PHONY: coveralls
coveralls:
@rebar3 coveralls send
hex-publish: clean
@rebar3 hex publish --repo=hexpm
.PHONY: test-env
test-env:
@./scripts/setup-test-env.sh