-
Notifications
You must be signed in to change notification settings - Fork 889
/
Makefile.toml
71 lines (58 loc) · 981 Bytes
/
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
[env]
CFG_RELEASE = { value = "${CARGO_MAKE_RUST_VERSION}", condition = { env_not_set = ["CFG_RELEASE"] } }
CFG_RELEASE_CHANNEL = { value = "${CARGO_MAKE_RUST_CHANNEL}", condition = { env_not_set = ["CFG_RELEASE_CHANNEL"] } }
[tasks.build-bin]
command = "cargo"
args = [
"build",
"--bin",
"rustfmt",
"--bin",
"cargo-fmt",
]
[tasks.build-bins]
command = "cargo"
args = [
"build",
"--bins",
]
[tasks.install]
command = "cargo"
args = [
"install",
"--path",
".",
"--force",
"--locked", # Respect Cargo.lock
]
[tasks.release]
command = "cargo"
args = [
"build",
"--release",
]
[tasks.test]
command = "cargo"
args = [
"test",
]
[tasks.test-all]
dependencies = ["build-bin"]
run_task = { name = ["test", "test-ignored"] }
[tasks.test-ignored]
command = "cargo"
args = [
"test",
"--",
"--ignored",
]
[tasks.b]
alias = "build"
[tasks.bb]
alias = "build-bin"
[tasks.bins]
alias = "build-bins"
[tasks.c]
alias = "check"
[tasks.t]
alias = "test"