forked from bkonkle/rust-example-caster-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.toml
159 lines (134 loc) · 3.15 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
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
[config]
main_project_member = "apps/api"
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 # things required for `cargo make test`
cargo install cargo-nextest
echo # things required by `cargo make pre-commit`
cargo install cargo-spellcheck
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 install cargo-audit
'''
[tasks.lint]
command = "cargo"
args = [
"clippy",
"--tests",
"--examples",
"--all-targets",
"--all-features",
"--workspace",
]
[tasks.format]
command = "cargo"
args = ["fmt", "--all", "--", "--check"]
[tasks.test]
env = { "RUN_MODE" = "test", "RUST_LOG" = "info" }
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", "${@}"]
[tasks.cov-ci]
command = "cargo"
env = { "RUN_MODE" = "ci" }
args = ["llvm-cov", "nextest", "--lcov", "--output-path", "lcov.info"]
[tasks.integration]
env = { "RUN_MODE" = "test", "RUST_LOG" = "info,sqlx::query=warn", "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,sqlx::query=warn" }
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",
"--examples",
]
[tasks.audit]
command = "cargo"
# Ignore RUSTSEC-2020-0071 due to https://github.com/launchbadge/sqlx/issues/1586
args = ["audit", "--ignore", "RUSTSEC-2020-0071"]
[tasks.timings]
script = '''
cargo clean
cargo build --release --quiet --timings
xdg-open /target/cargo-timings/cargo-timing.html
'''
[tasks.pre-commit]
script = '''
cargo make test
cargo make docs
cargo spellcheck fix
cargo spellcheck reflow
'''
[tasks.dev]
env = { "RUST_LOG" = "info,sqlx::query=warn" }
command = "cargo"
args = ["run", "--bin", "caster-api"]
watch = true
[tasks.db-create]
cwd = "./"
command = "sqlx"
args = ["db", "create"]
[tasks.db-migrate]
cwd = "./"
command = "sqlx"
args = ["migrate", "run"]
[tasks.db-reset]
cwd = "./"
command = "sqlx"
args = ["db", "reset"]
[tasks.docker]
cwd = "./"
command = "docker-compose"
args = ["-f", "docker-compose.yml", "${@}"]
[tasks.docker-api]
cwd = "./apps/api"
command = "docker-compose"
args = [
"-f",
"../../docker-compose.yml",
"-f",
"docker-compose.app.yml",
"--env-file",
"../../.env",
"${@}",
]
[tasks.schema]
cwd = "./"
command = "cargo"
args = ["run", "--bin", "caster-schema"]