mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-24 12:29:04 +08:00
try fix linux arm64 build (#8560)
Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
parent
625b610cfd
commit
a0dc38f749
4
.github/workflows/flutter-build.yml
vendored
4
.github/workflows/flutter-build.yml
vendored
@ -968,12 +968,14 @@ jobs:
|
|||||||
target: x86_64-unknown-linux-gnu,
|
target: x86_64-unknown-linux-gnu,
|
||||||
distro: ubuntu18.04,
|
distro: ubuntu18.04,
|
||||||
on: ubuntu-20.04,
|
on: ubuntu-20.04,
|
||||||
|
deb_arch: amd64,
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
arch: aarch64,
|
arch: aarch64,
|
||||||
target: aarch64-unknown-linux-gnu,
|
target: aarch64-unknown-linux-gnu,
|
||||||
distro: ubuntu18.04,
|
distro: ubuntu18.04,
|
||||||
on: [self-hosted, Linux, ARM64],
|
on: [self-hosted, Linux, ARM64],
|
||||||
|
deb_arch: arm64,
|
||||||
}
|
}
|
||||||
steps:
|
steps:
|
||||||
- name: Export GitHub Actions cache environment variables
|
- name: Export GitHub Actions cache environment variables
|
||||||
@ -1152,7 +1154,6 @@ jobs:
|
|||||||
aarch64)
|
aarch64)
|
||||||
export PATH=/opt/flutter-elinux/bin:$PATH
|
export PATH=/opt/flutter-elinux/bin:$PATH
|
||||||
sed -i "s/flutter build linux --release/flutter-elinux build linux --verbose/g" ./build.py
|
sed -i "s/flutter build linux --release/flutter-elinux build linux --verbose/g" ./build.py
|
||||||
export ARCH=arm64
|
|
||||||
sed -i "s/x64\/release/arm64\/release/g" ./build.py
|
sed -i "s/x64\/release/arm64\/release/g" ./build.py
|
||||||
;;
|
;;
|
||||||
x86_64)
|
x86_64)
|
||||||
@ -1184,6 +1185,7 @@ jobs:
|
|||||||
# build flutter
|
# build flutter
|
||||||
pushd /workspace
|
pushd /workspace
|
||||||
export CARGO_INCREMENTAL=0
|
export CARGO_INCREMENTAL=0
|
||||||
|
export DEB_ARCH=${{ matrix.job.deb_arch }}
|
||||||
python3 ./build.py --flutter --skip-cargo
|
python3 ./build.py --flutter --skip-cargo
|
||||||
for name in rustdesk*??.deb; do
|
for name in rustdesk*??.deb; do
|
||||||
mv "$name" "${name%%.deb}-${{ matrix.job.arch }}.deb"
|
mv "$name" "${name%%.deb}-${{ matrix.job.arch }}.deb"
|
||||||
|
Loading…
Reference in New Issue
Block a user