Build arm64 and x64
Some checks reported errors
firka/flutter/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
Armand 2025-07-17 13:48:22 +00:00 committed by jenkins-runner
parent 2c1397e095
commit 606542f88a

View File

@ -2,8 +2,16 @@
cd $(cat ~/.flutter_path)/engine/src/out/
et build -c ci/android_release -j $(nproc)
et build -c host_release -j $(nproc)
rm android_release || true
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