-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
71 lines (59 loc) · 1.31 KB
/
Taskfile.yml
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
version: '3'
vars:
PROJECT_NAME: CharsetDetect
tasks:
compile:
desc: Compile sources (with Rust)
env:
RUSTLER_PRECOMPILATION_EXAMPLE_BUILD: 1
cmds:
- mix compile
compile-using-precompiled-binaries:
desc: Compile sources (without Rust)
cmds:
- mix compile
console:
desc: Open console
env:
RUSTLER_PRECOMPILATION_EXAMPLE_BUILD: 1
cmds:
- cmd: iex -S mix
ignore_error: true
test:
desc: Run tests (with Rust)
env:
RUSTLER_PRECOMPILATION_EXAMPLE_BUILD: 1
cmds:
- mix test --trace
test-using-precompiled-binaries:
desc: Run tests (without Rust)
cmds:
- mix test --trace
check:
desc: Check codes
cmds:
- task: dialyzer
- task: clippy
dialyzer:
desc: Run dialyzer
cmd: mix dialyzer
clippy:
desc: Run clippy
dir: native/charset_detect
cmd: cargo clippy
clean:
desc: Clean up
cmds:
- mix clean
- rm -f priv/native/*.so
- rm -rf native/charset_detect/target/*/build
rustler-precompiled-download:
desc: Download precompiled files info
env:
RUSTLER_PRECOMPILATION_EXAMPLE_BUILD: 1
cmds:
- "mix rustler_precompiled.download {{.PROJECT_NAME}} --all --print"
default:
cmds:
- task -l --sort=none
silent: true