2018-10-13 15:38:31 +01:00
|
|
|
language: cpp
|
|
|
|
compiler: gcc
|
|
|
|
sudo: require
|
2018-10-14 13:29:02 +01:00
|
|
|
dist: trusty
|
|
|
|
|
2018-10-13 16:55:01 +01:00
|
|
|
cache:
|
2018-10-14 13:29:02 +01:00
|
|
|
ccache: true
|
|
|
|
directories:
|
|
|
|
- /var/cache/apt/archives
|
2018-10-13 16:55:01 +01:00
|
|
|
paths:
|
2018-10-14 13:29:02 +01:00
|
|
|
- /var/cache/apt/archives
|
2018-10-13 15:38:31 +01:00
|
|
|
|
|
|
|
before_install:
|
2018-10-14 13:29:02 +01:00
|
|
|
- sudo add-apt-repository ppa:beineri/opt-qt-5.10.1-trusty -y
|
2018-10-13 15:43:23 +01:00
|
|
|
- sudo apt-get update
|
2018-10-13 15:38:31 +01:00
|
|
|
|
|
|
|
install:
|
2018-10-14 13:40:22 +01:00
|
|
|
- sudo apt-get -y install qt510-meta-minimal qt510quickcontrols2 qt510imageformats qt510svg libgl1-mesa-dev
|
2018-10-14 13:38:39 +01:00
|
|
|
- sudo apt-get build-dep mpv
|
2018-10-13 15:38:31 +01:00
|
|
|
- source /opt/qt*/bin/qt*-env.sh
|
|
|
|
|
|
|
|
script:
|
2018-10-14 13:29:02 +01:00
|
|
|
- bash scripts/build-mpv.sh
|
2018-10-13 15:38:31 +01:00
|
|
|
- qmake CONFIG+=release PREFIX=/usr
|
|
|
|
- make -j$(nproc)
|
|
|
|
- make INSTALL_ROOT=appdir -j$(nproc) install ; find appdir/
|
2018-10-14 13:29:02 +01:00
|
|
|
- wget "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
|
|
|
|
- chmod a+x linuxdeployqt-continuous-x86_64.AppImage
|
2018-10-13 20:58:41 +01:00
|
|
|
- wget "https://artifacts.assassinate-you.net/artifactory/linuxdeploy/travis-154/linuxdeploy-x86_64.AppImage"
|
|
|
|
- wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage
|
|
|
|
- chmod +x linux*
|
2018-10-13 15:38:31 +01:00
|
|
|
- unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
|
|
|
|
- export VERSION=$(git rev-parse --short HEAD) # linuxdeployqt uses this for naming the file
|
2018-10-13 18:10:32 +01:00
|
|
|
- mkdir -p appdir/usr/plugins/imageformats/
|
|
|
|
- cp /opt/qt*/plugins/imageformats/libqsvg.so appdir/usr/plugins/imageformats/
|
2018-10-14 13:29:02 +01:00
|
|
|
- ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -qmldir=./src/qml/ -bundle-non-qt-libs
|
|
|
|
- ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -qmldir=./src/qml/ -appimage
|
|
|
|
- #./linuxdeploy-x86_64.AppImage --appdir AppDir -e KittehPlayer -i KittehPlayer.png -d KittehPlayer.desktop --plugin qt --output appimage
|
2018-10-13 15:38:31 +01:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- find appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq
|
2018-10-13 15:43:23 +01:00
|
|
|
- curl --upload-file KittehPlayer*.AppImage https://transfer.sh/KittehPlayer-git.$(git rev-parse --short HEAD)-x86_64.AppImage
|
2018-10-13 20:27:55 +01:00
|
|
|
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
|
|
|
|
- bash upload.sh KittehPlayer*.AppImage*
|
2018-10-13 15:38:31 +01:00
|
|
|
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- # Do not build tags that we create when we upload to GitHub Releases
|
|
|
|
- /^(?i:continuous)/
|