37 lines
1.5 KiB
YAML
37 lines
1.5 KiB
YAML
language: cpp
|
|
compiler: gcc
|
|
sudo: require
|
|
dist: xenial
|
|
|
|
before_install:
|
|
- sudo add-apt-repository ppa:beineri/opt-qt-5.11.1-xenial -y
|
|
- sudo add-apt-repository ppa:mc3man/xerus-media -y
|
|
- sudo apt-get update
|
|
|
|
install:
|
|
- sudo apt update
|
|
- sudo apt-get -y install libmpv-dev qt511-meta-full
|
|
- source /opt/qt*/bin/qt*-env.sh
|
|
|
|
script:
|
|
- qmake CONFIG+=release PREFIX=/usr
|
|
- make -j$(nproc)
|
|
- make INSTALL_ROOT=appdir -j$(nproc) install ; find appdir/
|
|
- wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
|
|
- chmod a+x linuxdeployqt-continuous-x86_64.AppImage
|
|
- unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
|
|
- export VERSION=$(git rev-parse --short HEAD) # linuxdeployqt uses this for naming the file
|
|
- ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -qmldir=./qml/ -bundle-non-qt-libs
|
|
- ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -qmldir=./qml/ -appimage
|
|
|
|
after_success:
|
|
- find appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq
|
|
- curl --upload-file KittehPlayer*.AppImage https://transfer.sh/KittehPlayer-git.$(git rev-parse --short HEAD)-x86_64.AppImage
|
|
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
|
|
- bash upload.sh KittehPlayer*.AppImage*
|
|
|
|
branches:
|
|
except:
|
|
- # Do not build tags that we create when we upload to GitHub Releases
|
|
- /^(?i:continuous)/
|