-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
42 lines (37 loc) · 1.55 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
40
41
42
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 qt58webengine qt58svg
- source /opt/qt58/bin/qt58-env.sh
script:
- qmake PREFIX=/usr
- make -j4
- sudo apt-get -y install checkinstall
- sudo checkinstall --pkgname=app --pkgversion="1" --pkgrelease="1" --backup=no --fstrans=no --default --deldoc
- mkdir appdir appdir/usr appdir/usr/bin
- cd appdir
- cp ../cuarzobrowser usr/bin/
- cp ../cuarzobrowser.desktop .
- cp ../cuarzobrowser.png cuarzobrowser.png
- cd ..
- sudo make DESTDIR=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/bin/cuarzobrowser -bundle-non-qt-libs
- ./linuxdeployqt*.AppImage ./appdir/usr/bin/cuarzobrowser -appimage
- find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq
- ls -lh ./Cuarzo_Browser*.AppImage
- mv ./Cuarzo_Browser*.AppImage CuarzoBrowser-continuous-x86_64.AppImage
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
- bash ./upload.sh CuarzoBrowser-continuous-x86_64.AppImage
branches:
except:
- #Do not build manually uploaded files to Github Releases
- /^(?i:continuous)$/