forked from abdularis/LAN-Share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (34 loc) · 1.77 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
30
31
32
33
34
35
36
37
38
39
language: cpp
compiler: gcc
sudo: require
dist: trusty
before_install:
- sudo add-apt-repository ppa:beineri/opt-qt593-trusty -y
- sudo apt-get update -qq
install:
- sudo apt-get -y install qt59base
- source /opt/qt*/bin/qt*-env.sh
script:
- cd src/
- qmake CONFIG+=release PREFIX=/usr
- make -j$(nproc)
# - make INSTALL_ROOT=appdir -j$(nproc) install ; find appdir/ # FIXME: https://github.com/abdularis/LAN-Share/issues/7
- mkdir -p appdir/usr/bin ; cp LANShare appdir/usr/bin
- mkdir -p appdir/usr/share/icons/hicolor/128x128/apps/ ; cp ../packaging/linux/debian/lanshare-icon.png appdir/usr/share/icons/hicolor/128x128/apps/lanshare.png
- 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
- mkdir -p appdir/usr/share/applications/
- cp ../packaging/linux/AppImage/LANShare.desktop appdir/usr/share/applications/
- ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -bundle-non-qt-libs
- ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage
after_success:
- find appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq
- # curl --upload-file LANShare*.AppImage https://transfer.sh/LANShare-git.$(git rev-parse --short HEAD)-x86_64.AppImage
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
- bash upload.sh LANShare*.AppImage*
branches:
except:
- # Do not build tags that we create when we upload to GitHub Releases
- /^(?i:continuous)