-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (25 loc) · 1.5 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
language: cpp
compiler: gcc
sudo: require
dist: trusty
before_install:
- sudo add-apt-repository ppa:beineri/opt-qt58-trusty -y
- sudo apt-get update -qq
install:
- sudo apt-get -y install qt58base qt58translations qt58tools libvorbis-dev libogg-dev libsndfile-dev fftw3-dev libvorbis-dev libogg-dev libasound2-dev libjack-dev libsdl-dev libsamplerate0-dev libstk0-dev libfluidsynth-dev portaudio19-dev wine-dev g++-multilib libfltk1.3-dev libgig-dev libjack0
- source /opt/qt*/bin/qt*-env.sh
script:
- cmake . -DCMAKE_INSTALL_PREFIX=/usr -DWANT_QT5=True -DUSE_WERROR=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo
- make -j4
- make DESTDIR=appdir install ; find appdir/
after_success:
- 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
- export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/pulseaudio/
- sed -i -e 's|^Exec=.*|Exec=lmms|g' ./appdir/usr/share/applications/lmms.desktop
- cp appdir/usr/share/pixmaps/lmms.png appdir/lmms.png
- ./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
- curl --upload-file ./LMMS*.AppImage https://transfer.sh/LMMS-git.$(git rev-parse --short HEAD)-x86_64.AppImage