-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmise.toml
More file actions
57 lines (44 loc) · 1.48 KB
/
Copy pathmise.toml
File metadata and controls
57 lines (44 loc) · 1.48 KB
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
[tasks.build]
description = "Build cofi"
raw_args = true
run = 'make "$@"'
[tasks.rebuild]
description = "Clean and rebuild cofi"
run = "make clean && make"
[tasks.test]
description = "Run unit/regression tests"
run = "make test"
[tasks.test-target]
description = "Run one or more specific make test targets"
raw_args = true
run = "scripts/run-test-targets.sh"
[tasks.test-integration]
description = "Run Xvfb screenshot integration tests"
run = "make test-integration"
[tasks.gen-emoji]
description = "Generate emoji dataset sources from scripts/emoji.json"
run = "python3 scripts/gen_emoji.py"
[tasks.restart]
description = "Rebuild and restart the user service"
run = "./restart.sh"
[tasks.restart-local]
description = "Rebuild and restart the user service using ~/.local/bin"
run = 'PREFIX="$HOME/.local" ./restart.sh'
[tasks.install]
description = "Install copied binary to /usr/local/bin and user service"
run = "make install"
[tasks.install-dev]
description = "Install dev symlink to /usr/local/bin and user service"
run = "make install-dev"
[tasks.install-local]
description = "Install copied binary to ~/.local/bin and user service"
run = "make install-local"
[tasks.install-dev-local]
description = "Install dev symlink to ~/.local/bin and user service"
run = "make install-dev-local"
[tasks.uninstall]
description = "Remove installed binary and user service"
run = "make uninstall"
[tasks.uninstall-local]
description = "Remove ~/.local/bin binary and user service"
run = "make uninstall-local"