From 1c91dac211da9ea6dc0c0c659155ed4dc55c5a90 Mon Sep 17 00:00:00 2001 From: Ani Date: Sun, 4 Jun 2017 20:52:57 +0100 Subject: [PATCH] Fix travis (#2832) --- .travis.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5ab869339f..0ac256552a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,14 +64,14 @@ before_script: - make -j 3 - # AppImage generation - if [ "$TRAVIS_BRANCH" = "master" ] && [ "$TRAVIS_PULL_REQUEST" = false ]; then - make DESTDIR=appdir install ; find appdir/ - find ../bin - wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" - chmod a+x linuxdeployqt*.AppImage - unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH - ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -bundle-non-qt-libs - ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -appimage - find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq + make DESTDIR=appdir install ; find appdir/ ; + find ../bin ; + wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" ; + chmod a+x linuxdeployqt*.AppImage ; + unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH ; + ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -bundle-non-qt-libs ; + ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -appimage ; + find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq ; zip -r9 rpcs3.zip ./RPCS3*.AppImage; curl ${UPLOAD_URL}${TRAVIS_COMMIT:0:7}-${TRAVIS_BUILD_NUMBER}-${CC}_linux64 --upload-file rpcs3.zip; fi;