flutter/dev/tools/build_release.sh
Armand 606542f88a
Some checks reported errors
firka/flutter/pipeline/head Something is wrong with the build of this commit
Build arm64 and x64
2025-07-17 13:50:41 +00:00

18 lines
505 B
Bash
Executable File

#!/bin/bash
cd $(cat ~/.flutter_path)/engine/src/out/
et build -c host_release -j $(nproc)
et build -c ci/android_release -j $(nproc)
et build -c ci/android_release_arm64 -j $(nproc)
et build -c ci/android_release_x64 -j $(nproc)
rm android_release >/dev/null || true
rm android_release_arm64 >/dev/null || true
rm android_release_x64 >/dev/null || true
ln -sf ci/android_release android_release
ln -sf ci/android_release_arm64 android_release_arm64
ln -sf ci/android_release_x64 android_release_x64