Files
sethLabels/.travis.yml
T
gitlost 3c9a822b50 Typo cmake LIBZINT_LIBRARIES -> LIBZINT_LIBRARY (#60)
* Typo cmake LIBZINT_LIBRARIES -> LIBZINT_LIBRARY
* Also adds libzint to appimage deployment
2019-07-06 23:30:41 -04:00

49 lines
1.9 KiB
YAML

language: cpp
compiler: gcc
sudo: require
dist: trusty
before_install:
- sudo add-apt-repository ppa:beineri/opt-qt591-trusty -y
- sudo apt-get update -qq
install:
- sudo apt-get -y install qt59base qt59svg qt59tools qt59translations zlib1g-dev xvfb
- sudo apt-get -y install barcode libqrencode-dev
- wget https://downloads.sourceforge.net/project/zint/zint/2.6.3/zint-2.6.3_final.tar.gz && tar xzf zint-2.6.3_final.tar.gz && cd zint-2.6.3.src && mkdir build && cd build && cmake .. && make && sudo make install && cd ../..
- source /opt/qt5*/bin/qt5*-env.sh
script:
- git fetch --unshallow # restore repository depth to properly count commits in auto versioning
- git checkout master # re-attach to master to satisfy auto versioning
- mkdir build
- cd build
- cmake .. -DCMAKE_INSTALL_PREFIX=/usr
- make -j4
- xvfb-run make test
- sudo make DESTDIR=appdir install ; sudo chown -R $USER appdir ; find appdir/
after_success:
- wget -c "https://github.com/jimevins/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=/opt/qt*/lib/:/usr/local/lib:$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
- ls -lh ./gLabels*.AppImage
- mv ./gLabels*.AppImage glabels-continuous-x86_64.AppImage
- wget -c https://github.com/jimevins/uploadtool/raw/master/upload.sh
- bash ./upload.sh glabels-continuous-x86_64.AppImage
branches:
except:
- /.*/
- # Do not build tags that we create when we upload to GitHub Releases
- /^(?i:continuous)$/
branches:
only:
- master