cutter/.travis.yml

61 lines
2.6 KiB
YAML
Raw Normal View History

2017-04-02 12:17:32 +00:00
language: cpp
2017-09-25 17:51:49 +00:00
cache: ccache
2017-09-25 17:34:38 +00:00
2017-09-25 17:51:49 +00:00
matrix:
include:
- os: osx
before_install:
- brew update
install:
2017-09-26 09:05:22 +00:00
- brew install p7zip ccache qt5
2017-09-26 09:28:14 +00:00
- export PATH="/usr/local/opt/qt/bin:$PATH"
2017-09-25 17:51:49 +00:00
after_success:
# TODO: include radare2/www for the webserver
- macdeployqt cutter.app -dmg
2017-09-26 10:25:49 +00:00
- export FILE_TO_UPLOAD="cutter.dmg"
2017-09-25 17:51:49 +00:00
- os: linux
dist: trusty
sudo: required
before_install:
- sudo add-apt-repository ppa:beineri/opt-qt562-trusty -y
- sudo apt-get update -qq
install:
- sudo apt-get -y install qt56base qt56webengine
- source /opt/qt5*/bin/qt5*-env.sh
after_success:
- sudo make INSTALL_ROOT=appdir install
- sudo chown -R $USER appdir
- cp -r /usr/share/radare2 appdir/usr/share/
- 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 -verbose=2
- ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -appimage -verbose=2
- find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq
2017-09-26 10:25:49 +00:00
- export FILE_TO_UPLOAD="Cutter-x86_64.AppImage"
2017-04-02 12:17:32 +00:00
script:
- git submodule init ; git submodule update
- cd radare2
2017-09-25 17:51:49 +00:00
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
INSTALL_TARGET=install sys/install.sh;
else
LDFLAGS=-headerpad_max_install_names INSTALL_TARGET=install sys/install.sh;
fi
2017-04-02 12:17:32 +00:00
- cd ..
2017-09-25 17:51:49 +00:00
- mkdir build
- cd build
- qmake PREFIX=/usr APPIMAGE=1 ../src
2017-04-02 12:17:32 +00:00
- make -j4
2017-09-26 10:09:00 +00:00
deploy:
skip_cleanup: true
provider: releases
api_key:
secure: ZXuSX8JXyL0HlJvSIda3ftMkvYsrxoWDcWm2LxO+f0uNFghCHNnISuH/btdipn2mjCBaBQl6/1IK5cg/AZ5OSkiaVsJJqY8kkPsZvR8K+k4oarsr2ApetlLZiZWtydC3J+UyNhsgCt4iuYPsvusANFPZBpVmqT+A5CHS7aPIqP00awbkJYG1uOENe2XVZ0vyotBqU0E7A9f8UO5ps0+qysS8W+NDB+CGLgKLeBfCk3U+IYKGYXcv66xCmSSZ5f7IVIXEjG4voFHGp9XLRY2R/iJgiKQKDbu519vUB3iKPzmLTB/Q9bNz4VMZCREa4SHaLDen730fMHbfm6ZhGZDzXg1DgZoh6RHptWf0WjcHTr1ch8ajpnBMxh/qmoRpaS00FJQMraMT3Il38ekYd+hOhsP58Bj1Db2vjBKopGEHGmVyFQZKuynrdKmpmY+kRNUT3QerIsiAHwHV2QXnMARHYXJrM0T7LNACa2mhiwQD2vNIqLRieIbHbSWgDUrTVTDeII23AAHCzD0YxcCAjSExjun/rc9dJjevgCoBpTM/NHPLCW4big1myx+vRQGPNdlf+dI7igm6bPVWB7znp5uXlI8q5irvqTVtRSvKbcaeDWOz/ki7QgOzaxmGFtaw30hxeY0wFlnSMXc8m42udWLkp/l0b4L0hcoaMTc1TvVU0i4=
file:
2017-09-26 10:25:49 +00:00
- "${FILE_TO_UPLOAD}"
2017-09-26 10:09:00 +00:00
on:
repo: radareorg/cutter