Browse Source

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
reviewable/pr6468/r8
Anthony Bilinski 3 years ago
parent
commit
75648d04b9
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 1
      appimage/build.sh

1
appimage/build.sh

@ -97,6 +97,7 @@ libs=( @@ -97,6 +97,7 @@ libs=(
/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/libpangoft2-1.0.so.0
/usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0
)
for lib in "${libs[@]}"; do

Loading…
Cancel
Save