67 lines
1.5 KiB
YAML
67 lines
1.5 KiB
YAML
language: cpp
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
branches:
|
|
only:
|
|
- develop
|
|
- master
|
|
- testing
|
|
|
|
env:
|
|
matrix:
|
|
- CONFIG=release
|
|
#- CONFIG=debug
|
|
|
|
install:
|
|
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
|
|
lsb_release -a
|
|
&& sudo apt-add-repository -y ppa:ubuntu-toolchain-r/test
|
|
&& sudo apt-add-repository -y ppa:beineri/opt-qt591-trusty
|
|
&& sudo apt-get -qq update
|
|
&& sudo apt-get -qq install g++-4.8 libc6-i386 qt59tools qt59svg qt59quickcontrols qt59quickcontrols2 qt59webengine qt59script
|
|
&& export CXX="g++-4.8"
|
|
&& export CC="gcc-4.8"
|
|
;
|
|
else
|
|
brew update > /dev/null
|
|
&& brew install qt5
|
|
&& chmod -R 755 /usr/local/opt/qt5/*
|
|
;
|
|
fi
|
|
|
|
script:
|
|
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
|
|
QTDIR="/opt/qt59"
|
|
&& PATH="$QTDIR/bin:$PATH"
|
|
&& qt59-env.sh
|
|
;
|
|
else
|
|
QTDIR="/usr/local/opt/qt5"
|
|
&& PATH="$QTDIR/bin:$PATH"
|
|
&& LDFLAGS=-L$QTDIR/lib
|
|
&& CPPFLAGS=-I$QTDIR/include
|
|
;
|
|
fi
|
|
- qmake qmarkdowntextedit.pro CONFIG+=$CONFIG
|
|
- make
|
|
|
|
notifications:
|
|
recipients:
|
|
- developer@bekerle.com
|
|
email:
|
|
on_success: change
|
|
on_failure: change
|
|
irc:
|
|
# https://docs.travis-ci.com/user/notifications/#IRC-notification
|
|
channels:
|
|
- "chat.freenode.net#qownnotes"
|
|
template:
|
|
- "[%{commit}] %{repository} (%{branch}): %{message} | Commit message: %{commit_message} | Changes: %{compare_url} | Build details: %{build_url}"
|
|
on_success: always
|
|
on_failure: always
|
|
use_notice: true
|
|
skip_join: true
|