-
Notifications
You must be signed in to change notification settings - Fork 0
/
Justfile
45 lines (37 loc) · 1.21 KB
/
Justfile
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
########################################################################
# Проверки разные по коду и форматирование
# Так можно делать таргеты закрытыми с помощью аттрибутов:
# - https://just.systems/man/en/chapter_32.html
[private]
@_FMT_CHECK_CLIPPY:
cargo fmt \
--all
cargo check \
--all-targets
cargo clippy \
--all-targets
[private]
@_FMT_CHECK_CLIPPY_RELEASE:
cargo fmt \
--all
cargo check \
--release \
--all-targets
cargo clippy \
--release \
--all-targets
########################################################################
BUILD target: _FMT_CHECK_CLIPPY
cargo build --bin {{ target }}
BUILD_RELEASE target: _FMT_CHECK_CLIPPY_RELEASE
cargo build \
--release \
--bin {{ target }}
########################################################################
RUN_TEST_1: (BUILD "test_1")
{{justfile_directory()}}/target/debug/test_1 \
--users-file-path "{{justfile_directory()}}/test_1/data_samples/users.json"
# WATCH_TEST_1:
# cargo watch \
# --watch test_1/templates/ \
# -- echo Hello world