-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
37 lines (30 loc) · 755 Bytes
/
Copy pathjustfile
File metadata and controls
37 lines (30 loc) · 755 Bytes
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
# Lists available recipes.
default:
@just --list
# Runs tests.
test:
cargo test
# Builds release artifacts.
[linux]
build:
cargo build --release --target=x86_64-unknown-linux-musl
# Builds release artifacts.
[macos]
build:
cargo build --release --target=aarch64-apple-darwin
# Builds release artifacts.
[windows]
build:
cargo build --release --target=x86_64-pc-windows-msvc
# Publishes the application to the Armory registry.
[linux]
publish: build
armory publish --triple x86_64_linux
# Publishes the application to the Armory registry.
[macos]
publish: build
armory publish --triple aarch64_darwin
# Publishes the application to the Armory registry.
[windows]
publish: build
armory publish --triple x86_64_windows