disable flutter texture render of osx intel
This commit is contained in:
parent
511b982dce
commit
28bf73cd5a
2 changed files with 10 additions and 2 deletions
7
.github/workflows/flutter-build.yml
vendored
7
.github/workflows/flutter-build.yml
vendored
|
|
@ -651,7 +651,12 @@ jobs:
|
|||
|
||||
- name: Build rustdesk
|
||||
run: |
|
||||
./build.py --flutter --hwcodec ${{ matrix.job.extra-build-args }}
|
||||
if [[ "${{ matrix.job.arch }}" == "aarch64" ]]; then
|
||||
export EXTRA_ARGS=""
|
||||
else
|
||||
export EXTRA_ARGs="--disable-flutter-texture-render"
|
||||
fi
|
||||
./build.py --flutter $EXTRA_ARGS --hwcodec ${{ matrix.job.extra-build-args }}
|
||||
|
||||
- name: create unsigned dmg
|
||||
if: env.UPLOAD_ARTIFACT == 'true'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue