fix aarch64 nightly build (#9881)
Some checks failed
CI / ${{ matrix.job.target }} (${{ matrix.job.os }}) (map[os:ubuntu-20.04 target:x86_64-unknown-linux-gnu]) (push) Has been cancelled
Full Flutter CI / run-ci (push) Has been cancelled

Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
21pages 2024-11-11 16:28:25 +08:00 committed by GitHub
parent f0be80c253
commit 35b4535ebc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1574,7 +1574,14 @@ jobs:
esac
if [[ "3.24.4" == ${{ env.FLUTTER_VERSION }} ]]; then
pushd $(dirname $(dirname $(which flutter)))
case ${{ matrix.job.arch }} in
aarch64)
pushd /opt/flutter-elinux/flutter
;;
x86_64)
pushd /opt/flutter
;;
esac
git apply ${{ github.workspace }}/.github/patches/flutter_3.24.4_dropdown_menu_enableFilter.diff
popd
fi