-
Notifications
You must be signed in to change notification settings - Fork 27
/
justfile
71 lines (53 loc) · 1.39 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
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
checks: test test_rc clippy clippy_rc fmt check_links doc wasm
check_links:
mlc --offline README.md
mlc --offline docs
clippy:
cargo clippy --workspace -- -D warnings
clippy_rc:
cargo clippy -p koto_memory --no-default-features --features rc -- -D warnings
doc *args:
RUSTDOCFLAGS="-D warnings" cargo doc --workspace --exclude koto_cli {{args}}
fmt:
cargo fmt --all -- --check
setup:
cargo install cargo-watch mlc wasm-pack
temp *args:
cargo run {{args}} -- --tests -i temp.koto
test *args:
cargo test {{args}}
test_rc *args:
cargo test --tests --no-default-features --features rc \
-p koto_parser \
-p koto_bytecode \
-p koto_runtime \
-p koto \
-p lib_tests \
{{args}}
test_benches:
cargo test --benches
test_docs:
cargo test \
--test docs_examples \
--test color_docs \
--test geometry_docs \
--test json_docs \
--test random_docs \
--test regex_docs \
--test tempfile_docs \
--test toml_docs \
--test yaml_docs
test_koto:
cargo test --test koto_tests
test_libs:
cargo test --test lib_tests
test_parser *args:
cargo test -p koto_lexer -p koto_parser {{args}}
test_release *args:
just test --release {{args}}
test_runtime *args:
cargo test -p koto_runtime -p koto_bytecode {{args}}
wasm:
cd crates/koto/examples/wasm && wasm-pack test --node
watch command *args:
cargo watch -s "just {{command}} {{args}}"