mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-22 19:15:05 +03:00
32583600d4
Split Windows builds into shared x64 prep and arch-specific packaging, add comprehensive caching, verification scripts, and a PR smoke workflow. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
257 B
Bash
12 lines
257 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
./gradlew \
|
|
:app:shared:compileKotlinJvm \
|
|
:utils:shared:compileKotlinJvm \
|
|
:app:desktop:compileKotlin \
|
|
:app:shared:compileAndroidMain \
|
|
:app:android:compileReleaseKotlin \
|
|
--no-daemon \
|
|
--console=plain
|