Build server for multiple arch #106

Merged
schmelczer merged 10 commits from asch/multi-arch into main 2025-08-30 21:50:34 +01:00
3 changed files with 2 additions and 1 deletions
Showing only changes of commit f6571d5846 - Show all commits

1
.gitignore vendored
View file

@ -14,6 +14,7 @@ sync-server/databases
# Rust build folders
sync-server/target
sync-server/artifacts
sync-server/bindings/*.ts
*.log

Binary file not shown.

View file

@ -39,7 +39,7 @@ for target in $targets; do
name="${name//aarch64_unknown_linux_gnu/linux-aarch64}"
name="${name//x86_64_pc_windows_gnu/windows-x86_64}"
cp "target/$target/release/sync_server$ext" "../artifacts/$name"
cp "target/$target/release/sync_server$ext" "artifacts/$name"
echo "✓ Built $name"
done