-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Makefile.toml
122 lines (114 loc) · 2.34 KB
/
Makefile.toml
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[tasks.docker]
script_runner = "@shell"
command = "docker"
args = [
"build",
"-f",
"${CARGO_MAKE_WORKING_DIRECTORY}/.github/actions/nginx-module-toolbox/Dockerfile",
"-t",
"act-github-actions-nginx-module-toolbox:latest",
"--build-arg",
"IMAGE_BASE=alpine-3.12.0",
"--build-arg",
"NGINX_VERSION=1.20.2",
"${CARGO_MAKE_WORKING_DIRECTORY}/.github/actions/nginx-module-toolbox"
]
[tasks.default]
clear = true
dependencies = ["docker"]
script_runner = "@shell"
command = "docker"
args = [
"run",
"--rm",
"-itv",
"${CARGO_MAKE_WORKING_DIRECTORY}:/github/workspace",
"-p",
"1984:1984",
"act-github-actions-nginx-module-toolbox",
"bash"
]
[tasks.clean]
dependencies = ["docker"]
script_runner = "@shell"
command = "rm"
args = ["-rf", "bin"]
[tasks.analyse]
script_runner = "@shell"
dependencies = ["docker"]
command = "docker"
args = [
"run",
"--rm",
"-itv",
"${CARGO_MAKE_WORKING_DIRECTORY}:/github/workspace",
"act-github-actions-nginx-module-toolbox",
"bash",
"./scripts/analyse.sh"
]
[tasks.format]
clear = true
dependencies = ["docker"]
script_runner = "@shell"
script = [
'''
docker \
run \
--rm \
-itv ${CARGO_MAKE_WORKING_DIRECTORY}:/github/workspace \
act-github-actions-nginx-module-toolbox \
clang-format \
-i \
src/*.c
'''
]
[tasks.build]
clear = true
dependencies = ["clean", "format"]
script_runner = "@shell"
command = "docker"
args = [
"run",
"--rm",
"-itv",
"${CARGO_MAKE_WORKING_DIRECTORY}:/github/workspace",
"act-github-actions-nginx-module-toolbox",
"bash",
"./scripts/build.sh"
]
[tasks.conditional-build]
dependencies = ["docker"]
condition = { files_not_exist = [
"${CARGO_MAKE_WORKING_DIRECTORY}/bin/dynamic/nginx",
"${CARGO_MAKE_WORKING_DIRECTORY}/bin/dynamic/ngx_http_upstream_jdomain_module.so",
"${CARGO_MAKE_WORKING_DIRECTORY}/bin/static/nginx",
]}
run_task = "build"
[tasks.test]
clear = true
dependencies = ["conditional-build"]
script_runner = "@shell"
command = "docker"
args = [
"run",
"--rm",
"-itv",
"${CARGO_MAKE_WORKING_DIRECTORY}:/github/workspace",
"act-github-actions-nginx-module-toolbox",
"bash",
"./scripts/test.sh"
]
[tasks.leak]
clear = true
dependencies = ["conditional-build"]
script_runner = "@shell"
command = "docker"
args = [
"run",
"--rm",
"-itv",
"${CARGO_MAKE_WORKING_DIRECTORY}:/github/workspace",
"act-github-actions-nginx-module-toolbox",
"bash",
"./scripts/leak.sh"
]