Skip to content

Commit

Permalink
fix aarch64 nightly build (rustdesk#9881)
Browse files Browse the repository at this point in the history
Signed-off-by: 21pages <[email protected]>
  • Loading branch information
21pages authored Nov 11, 2024
1 parent f0be80c commit 35b4535
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/flutter-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 35b4535

Please sign in to comment.