-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathjustfile
More file actions
29 lines (29 loc) · 1.14 KB
/
Copy pathjustfile
File metadata and controls
29 lines (29 loc) · 1.14 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
setup:
rustup target add x86_64-pc-windows-msvc
rustup target add i686-pc-windows-msvc
curl -o ./res/sitelenselikiwenjuniko.ttf https://raw.githubusercontent.com/kreativekorp/sitelen-seli-kiwen/refs/heads/main/sitelenselikiwenjuniko.ttf
fmt:
cargo +nightly fmt --all
build *args:
regsvr32 -s -u ./target/debug/ajemi.dll || true
regsvr32 -s -u ./target/i686-pc-windows-msvc/debug/ajemi.dll || true
cargo build {{args}}
cargo build --target=i686-pc-windows-msvc {{args}}
regsvr32 -s ./target/debug/ajemi.dll
regsvr32 -s ./target/i686-pc-windows-msvc/debug/ajemi.dll
follow:
tail -f $LOCALAPPDATA/Ajemi/log.txt
unreg:
regsvr32 -s -u ./target/debug/ajemi.dll || true
regsvr32 -s -u ./target/i686-pc-windows-msvc/debug/ajemi.dll || true
pack:
cargo build --release
cargo build --release --target=i686-pc-windows-msvc
iscc ./installer.iss
release:
just pack
git push --delete origin nightly || true
git tag -d nightly || true
git tag nightly
git push origin nightly
gh release create nightly ./target/release/ajemi-installer_x64.exe -t "Nightly Build" -n "Nightly Build"