fix: WASM dosyasının bozulmasına neden olan hatalı manuel optimizasyon adımı kaldırıldı
All checks were successful
Build MIPS Binary / build (push) Successful in 6m45s

This commit is contained in:
spinline
2026-02-08 18:21:40 +03:00
parent 1e39cbb0c5
commit 8a9905fc56

View File

@@ -30,16 +30,7 @@ jobs:
npx @tailwindcss/cli -i input.css -o public/tailwind.css
trunk build --release
# Manuel WASM Optimizasyonu
WASM_FILE=$(ls dist/*.wasm | head -n 1)
BEFORE=$(du -h "$WASM_FILE" | cut -f1)
echo "Before optimization: $BEFORE"
wasm-opt --all-features -Oz "$WASM_FILE" -o "$WASM_FILE"
AFTER=$(du -h "$WASM_FILE" | cut -f1)
echo "After optimization: $AFTER"
echo "Optimization complete!"
echo "Build complete (WASM optimization handled by Rust compiler via opt-level=z)"
- name: Build Backend (MIPS)
env: