mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-23 19:49:05 +08:00
fix aarch64 nightly build (#9881)
Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
parent
f0be80c253
commit
35b4535ebc
9
.github/workflows/flutter-build.yml
vendored
9
.github/workflows/flutter-build.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user