Merge pull request #8 from probonopd/patch-1
Build and upload AppImage for Linux
This commit is contained in:
commit
cf81418938
30
.travis.yml
30
.travis.yml
@ -1,10 +1,26 @@
|
|||||||
install:
|
language: cpp
|
||||||
- sudo apt-add-repository --yes ppa:beineri/opt-qt551
|
compiler: gcc
|
||||||
|
sudo: require
|
||||||
|
dist: trusty
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- sudo add-apt-repository ppa:beineri/opt-qt58-trusty -y
|
||||||
- sudo apt-get update -qq
|
- sudo apt-get update -qq
|
||||||
- sudo apt-get install -qq qt55base qt55serialport qt55tools
|
|
||||||
- which qmake
|
install:
|
||||||
|
- sudo apt-get -y install qt58base qt58serialport qt58tools
|
||||||
|
- source /opt/qt58/bin/qt58-env.sh
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- source /opt/qt55/bin/qt55-env.sh
|
- qmake PREFIX=/usr
|
||||||
- qmake RepRaptor.pro
|
- make -j4
|
||||||
- make
|
- sudo make INSTALL_ROOT=appdir install ; sudo chown -R $USER appdir ; 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
|
||||||
|
- ./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 ./RepRaptor*.AppImage https://transfer.sh/RepRaptor-git.$(git rev-parse --short HEAD)-x86_64.AppImage
|
||||||
|
|||||||
@ -1,9 +1,8 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=RepRaptor
|
Name=RepRaptor
|
||||||
Comment=A Qt RepRap gcode sender/host controller aimed to be fast and minimalistic.
|
Comment=A Qt RepRap gcode sender/host controller aimed to be fast and minimalistic.
|
||||||
Exec=/usr/bin/RepRaptor
|
Exec=RepRaptor
|
||||||
Icon=/usr/share/icons/repraptor.png
|
Icon=repraptor
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Utility;Application;
|
Categories=Utility;Application;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user