-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
79 lines (58 loc) · 1.64 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
ACTION_DIRECTORY := action
AGENT_DIRECTORY := agent
.PHONY: bootstrap
bootstrap: bootstrap.action bootstrap.agent
.PHONY: bootstrap.action
bootstrap.action:
cd $(ACTION_DIRECTORY) && make bootstrap
.PHONY: bootstrap.agent
bootstrap.agent:
cd $(AGENT_DIRECTORY) && make bootstrap
.PHONY: build
build: build.action build.agent
.PHONY: build.action
build.action:
cd $(ACTION_DIRECTORY) && make build
.PHONY: build.agent
build.agent:
cd $(AGENT_DIRECTORY) && make build
.PHONY: test.integration
test.integration: test.integration.block
.PHONY: test.integration.block
test.integration.block:
vagrant ssh --command "bash /vagrant/test/block.sh"
.PHONY: test.artifacts
test.artifacts: test.artifacts.action test.artifacts.agent
.PHONY: test.artifacts.action
test.artifacts.action:
cd $(ACTION_DIRECTORY) && make test.artifacts
.PHONY: test.artifacts.agent
test.artifacts.agent:
cd $(AGENT_DIRECTORY) && make test.artifacts
.PHONY: test.lint
test.lint: test.lint.action test.lint.agent
.PHONY: test.lint.action
test.lint.action:
cd $(ACTION_DIRECTORY) && make test.lint
.PHONY: test.lint.agent
test.lint.agent:
cd $(AGENT_DIRECTORY) && make test.lint
.PHONY: test.types
test.types: test.types.action test.types.agent
.PHONY: test.types.action
test.types.action:
cd $(ACTION_DIRECTORY) && make test.types
.PHONY: test.types.agent
test.types.agent:
cd $(AGENT_DIRECTORY) && make test.types
.PHONY: test.unit
test.unit: test.unit.action test.unit.agent
.PHONY: test.unit.action
test.unit.action:
cd $(ACTION_DIRECTORY) && make test.unit
.PHONY: test.unit.agent
test.unit.agent:
cd $(AGENT_DIRECTORY) && make test.unit
.PHONY: vagrant.up
vagrant.up:
vagrant up