1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(appImage): Bundle libpangocairo which was incompatible on Arch

No systematic fix to the constant flakiness of AppImage. Although we could
upload the artifact in a job and download in on another job's platform,
minimal docker images aren't analogous to user desktop systems. AppImage
and linuxdeployqt specifically make assumptions about what libs should
exist, so our testing should be more real-world.

Will continue manually testing in full desktop VMs before release and
relying on user reports.

Fix #6454
This commit is contained in:
Anthony Bilinski 2022-02-16 09:42:22 -08:00
parent ddebf6ee7a
commit 75648d04b9
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C

View File

@ -97,6 +97,7 @@ libs=(
/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
/usr/lib/x86_64-linux-gnu/libpango-1.0.so.0 /usr/lib/x86_64-linux-gnu/libpango-1.0.so.0
/usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0 /usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0
/usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0
) )
for lib in "${libs[@]}"; do for lib in "${libs[@]}"; do