-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.toml
181 lines (153 loc) · 3.5 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
[config]
main_project_member = "scyllax"
default_to_workspace = false
[tasks.setup]
script = '''
echo installing git hooks
pre-commit --version || pip install pre-commit
pre-commit install || echo "failed to install git hooks!" 1>&2
echo install cargo-binstall
cargo install cargo-binstall
echo things required for `cargo make test`
cargo binstall -y cargo-nextest
echo things required by `cargo make coverage`
rustup component add llvm-tools-preview
cargo install cargo-llvm-cov
echo things required by `cargo make audit`
cargo binstall -y cargo-audit
echo things required by `cargo release`
cargo binstall -q -y cargo-release
echo things required by `cargo make sort-deps`
cargo binstall -y cargo-sort
echo things required by mdbook
cargo binstall -y mdbook mdbook-admonish
'''
[tasks.example]
cwd = "./"
command = "cargo"
args = ["run", "-p", "example"]
[tasks.lint]
install_crate = "clippy"
command = "cargo"
args = [
"clippy",
"--tests",
"--examples",
"--all-targets",
"--all-features",
"--workspace",
]
[tasks.lint-ci]
install_crate = "clippy"
command = "cargo"
args = [
"clippy",
"--tests",
"--examples",
"--all-targets",
"--all-features",
"--workspace",
"--",
"-D",
"warnings",
]
[tasks.format]
install_crate = "rustfmt"
command = "cargo"
args = ["fmt", "--all"]
[tasks.fmt]
alias = "format"
[tasks.format-ci]
install_crate = "rustfmt"
command = "cargo"
args = ["fmt", "--all", "--", "--check"]
[tasks.test]
env = { "RUN_MODE" = "test", "RUST_LOG" = "info", "RUST_BACKTRACE" = "short" }
command = "cargo"
args = ["nextest", "run", "--workspace", "${@}"]
[tasks.test-ci]
env = { "RUN_MODE" = "ci", "RUST_LOG" = "info" }
command = "cargo"
args = ["nextest", "run", "--workspace"]
[tasks.cov]
command = "cargo"
env = { "RUN_MODE" = "test" }
args = [
"llvm-cov", "nextest",
"-p", "scyllax-parser", "-p", "scyllax", "-p", "example",
"--ignore-filename-regex", "main.rs",
"${@}"
]
[tasks.cov-ci]
command = "cargo"
env = { "RUN_MODE" = "ci" }
args = [
"llvm-cov", "nextest",
"-p", "scyllax-parser", "-p", "scyllax", "-p", "example",
"--ignore-filename-regex", "main.rs",
"--lcov", "--output-path", "lcov.info"
]
[tasks.integration]
env = { "RUN_MODE" = "test", "RUST_LOG" = "info", "RUST_BACKTRACE" = 1 }
command = "cargo"
args = [
"nextest",
"run",
"--features=integration",
"--workspace",
"--run-ignored=ignored-only",
"${@}",
]
[tasks.integration-ci]
env = { "RUN_MODE" = "ci", "RUST_LOG" = "info" }
command = "cargo"
args = [
"nextest",
"run",
"--features=integration",
"--workspace",
"--run-ignored=ignored-only",
]
[tasks.docs]
command = "cargo"
args = [
"doc",
"--no-deps",
"--all-features",
"--document-private-items",
"--workspace",
# "--package=scyllax",
# "--package=scyllax-macros"
]
[tasks.docs-watch]
command = "cargo"
args = [
"doc",
"--no-deps",
"--all-features",
"--document-private-items",
"--workspace",
# "--package=scyllax",
# "--package=scyllax-macros"
]
watch = true
[tasks.timings]
script = '''
cargo clean
cargo build --release --quiet --timings
open /target/cargo-timings/cargo-timing.html
'''
[tasks.pre-commit]
script = '''
cargo make test
cargo make docs
cargo sort --workspace
'''
[tasks.audit]
command = "cargo"
args = ["audit"]
[tasks.dev-book]
command = "mdbook"
args = ["serve", "book"]