2017-04-02 12:17:32 +00:00
|
|
|
language: cpp
|
|
|
|
compiler: gcc
|
2017-05-14 00:04:19 +00:00
|
|
|
cache: ccache
|
2017-04-02 12:17:32 +00:00
|
|
|
sudo: require
|
|
|
|
dist: trusty
|
|
|
|
|
|
|
|
before_install:
|
2017-04-12 16:49:01 +00:00
|
|
|
- sudo add-apt-repository ppa:beineri/opt-qt562-trusty -y
|
2017-04-02 12:17:32 +00:00
|
|
|
- sudo apt-get update -qq
|
2017-09-25 17:34:38 +00:00
|
|
|
|
|
|
|
install:
|
2017-04-12 16:49:01 +00:00
|
|
|
- sudo apt-get -y install qt56base qt56webengine
|
2017-04-02 12:24:06 +00:00
|
|
|
- source /opt/qt5*/bin/qt5*-env.sh
|
2017-04-02 12:17:32 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
- git submodule init ; git submodule update
|
|
|
|
- cd radare2
|
|
|
|
- sys/install.sh
|
|
|
|
- cd ..
|
|
|
|
- mkdir build ; cd build
|
2017-05-22 21:43:13 +00:00
|
|
|
- qmake PREFIX=/usr APPIMAGE=1 ../src
|
2017-04-02 12:17:32 +00:00
|
|
|
- make -j4
|
2017-09-02 09:43:21 +00:00
|
|
|
- mkdir appdir
|
|
|
|
- sudo make INSTALL_ROOT=appdir install && sudo chown -R $USER appdir
|
|
|
|
- mkdir -p appdir/usr/share/radare2 && cp -Lr /usr/share/radare2/*-git/ appdir/usr/share/radare2/ && find appdir/
|
2017-04-02 12:17:32 +00:00
|
|
|
|
|
|
|
after_success:
|
2017-09-25 17:34:38 +00:00
|
|
|
- wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
|
2017-04-02 12:17:32 +00:00
|
|
|
- chmod a+x linuxdeployqt*.AppImage
|
|
|
|
- unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
|
2017-04-02 13:02:45 +00:00
|
|
|
- ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -bundle-non-qt-libs -verbose=2
|
|
|
|
- ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -appimage -verbose=2
|
2017-04-02 12:17:32 +00:00
|
|
|
- find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq
|
2017-09-25 17:34:38 +00:00
|
|
|
- ls Cut*.AppImage
|