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;