mirror of
https://github.com/rizinorg/cutter.git
synced 2025-02-22 14:43:46 +00:00
Create .travis.yml
This commit is contained in:
parent
0317cf2663
commit
c2ce84de5f
31
.travis.yml
Normal file
31
.travis.yml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
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
|
||||||
|
- source /opt/qt58/bin/qt58-env.sh
|
||||||
|
|
||||||
|
script:
|
||||||
|
- git submodule init ; git submodule update
|
||||||
|
- cd radare2
|
||||||
|
- sys/install.sh
|
||||||
|
- cd ..
|
||||||
|
- mkdir build ; cd build
|
||||||
|
- qmake PREFIX=/usr ../src
|
||||||
|
- make -j4
|
||||||
|
- 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 ./iaito*.AppImage https://transfer.sh/iaito-git.$(git rev-parse --short HEAD)-x86_64.AppImage
|
Loading…
Reference in New Issue
Block a user