AppImage fixes: reduce the size, fix Osg-Plugin search

Set OSG_LIBRARY_PATH so our bundled OSG plugins are used by
default.

Reduce which QtQuick plugins we bundle, and ensure we copy libraries
using archive mode to preserve symlinks. Also remove static libs. All of the
above should drastically reduce the image size.
This commit is contained in:
Automatic Release Builder
2020-09-28 16:29:32 +01:00
parent 714c4ac51c
commit fd4c8d8ffc
2 changed files with 15 additions and 6 deletions

View File

@@ -78,8 +78,11 @@ else
echo "warning: sentry-cli not installed, download from https://github.com/getsentry/sentry-cli/releases"
fi
# now we uploaded symnbols, strip the binary
strip $WORKSPACE/dist/bin/fgfs
# now we uploaded symnbols, strip the binaries
strip --strip-debug $WORKSPACE/dist/bin/fgfs
strip --strip-debug $WORKSPACE/dist/bin/fgviewer
strip --strip-debug $WORKSPACE/dist/bin/fgjs
#####################################################################################