diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-11-06 15:50:16 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-11-06 15:50:19 -0800 |
commit | 3ab016bfda5442b163262cfdd81ba1e11ea4dd63 (patch) | |
tree | 0b3ae3e385a6a70caecf255582b37f92c6165785 /.travis.yml | |
parent | 8307957a709bf78f3db96f9ee63b5dbe325dbde7 (diff) | |
download | subsurface-3ab016bfda5442b163262cfdd81ba1e11ea4dd63.tar.gz |
Travis AppImage: hide warning messages about GStreamer plugins
We don't use GStreamer and we really should try to build a QtWebKit
version without that dependency, but for now this should work to just
silence all these annoying warnings.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 1cceb2285..9e343ee1f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,6 +65,7 @@ script: - unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH - export LD_LIBRARY_PATH=/usr/local/lib/ # Workaround for https://github.com/probonopd/linuxdeployqt/issues/160 - ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -bundle-non-qt-libs -qmldir=./subsurface/map-widget/ -verbose=2 + - sed -i -e 's|/usr/lib/x86_64-linux-gnu|/usr/lib/x86_64-linux-xxx|g' ./appdir/usr/lib/libgstreamer-1.0.so.0 - ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -appimage -qmldir=./subsurface/map-widget/ -verbose=2 - find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq - curl --upload-file ./Subsurface*.AppImage https://transfer.sh/Subsurface-git.$(cd subsurface/ ; git rev-parse --short HEAD)-x86_64.AppImage |