-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy path.travis.yml
46 lines (41 loc) · 2.32 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
43
44
45
46
language: cpp
compiler: gcc
sudo: require
dist: bionic
before_install:
- sudo add-apt-repository ppa:beineri/opt-qt-5.11.1-bionic -y
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
install:
- sudo apt-get -y install libc6 libgl1-mesa-dev qt511base qt511tools gcc-8 libomp-dev
- source /opt/qt5*/bin/qt5*-env.sh
script:
- wget "http://ftp.icm.edu.pl/pub/unix/graphics/GraphicsMagick/1.3/GraphicsMagick-1.3.31.tar.xz"
- tar -xf GraphicsMagick-*.tar.xz
- cd GraphicsMagick-*/
- ./configure --prefix=/usr --enable-shared
- make -j$(nproc)
- sudo make install
- cd ..
- qmake CONFIG+=release PREFIX=/usr
- make -j$(nproc)
# - make INSTALL_ROOT=appdir -j$(nproc) install ; find appdir/
# - 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
# - ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -bundle-non-qt-libs
# Workaround to increase compatibility with older systems; see https://github.com/darealshinji/AppImageKit-checkrt for details
# - mkdir -p appdir/usr/optional/ ; wget -c https://github.com/darealshinji/AppImageKit-checkrt/releases/download/continuous/exec-x86_64.so -O ./appdir/usr/optional/exec.so
# - mkdir -p appdir/usr/optional/libstdc++/ ; cp /usr/lib/x86_64-linux-gnu/libstdc++.so.6 ./appdir/usr/optional/libstdc++/
# - ( cd appdir ; rm AppRun ; wget -c https://github.com/darealshinji/AppImageKit-checkrt/releases/download/continuous/AppRun-patched-x86_64 -O AppRun ; chmod a+x AppRun)
# - ./linuxdeployqt*.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 PhotoFlare*.AppImage https://transfer.sh/PhotoFlare-git.$(git rev-parse --short HEAD)-x86_64.AppImage
# - wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
# - bash upload.sh PhotoFlare*.AppImage*
#branches:
# except:
# - # Do not build tags that we create when we upload to GitHub Releases
# - /^(?i:continuous)/