Travis build matrix.

This commit is contained in:
Martin Rotter 2017-10-13 13:48:21 +02:00
parent fe77188b0a
commit 3ead080484
3 changed files with 5 additions and 2 deletions

View File

@ -5,6 +5,9 @@ dist: trusty
os:
- linux
- osx
env:
- qmake_args='USE_WEBENGINE=false'
- qmake_args='USE_WEBENGINE=true'
compiler:
- gcc
branches:

View File

@ -2,6 +2,6 @@
source /opt/qt59/bin/qt59-env.sh
mkdir rssguard-build && cd rssguard-build
qmake ..
qmake .. "$qmake_args"
make
make install

View File

@ -1,7 +1,7 @@
#!/bin/sh
mkdir rssguard-build && cd rssguard-build
qmake ..
qmake .. "$qmake_args"
make
make install