2015-06-01 19:32:55 +05:30
|
|
|
# General set up
|
2014-03-24 02:59:27 +05:30
|
|
|
language: cpp
|
2015-06-01 19:32:55 +05:30
|
|
|
cache: apt
|
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
|
|
|
|
# Build matrix set up
|
2014-03-24 02:59:27 +05:30
|
|
|
compiler:
|
|
|
|
- gcc
|
2015-06-01 19:32:55 +05:30
|
|
|
# - clang
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
# - osx
|
|
|
|
env:
|
|
|
|
- QT_VERSION=5.4.1 # latest stable
|
|
|
|
# - QT_VERSION=5.5-beta # latest
|
|
|
|
matrix:
|
|
|
|
exclude:
|
|
|
|
# only use clang on OS X
|
|
|
|
- os: osx
|
|
|
|
compiler: gcc
|
|
|
|
# only use the qt available from homebrew
|
|
|
|
- os: osx
|
|
|
|
env: QT_VERSION=5.4.1
|
|
|
|
- os: osx
|
|
|
|
env: QT_VERSION=5.5-beta
|
|
|
|
|
|
|
|
allow_failures:
|
|
|
|
# Qt 5.5 is not yet released and is therefore allowed to fail
|
|
|
|
- env: QT_VERSION=5.5-beta
|
|
|
|
|
|
|
|
# Install dependencies
|
2014-03-24 02:59:27 +05:30
|
|
|
install:
|
2015-06-01 19:32:55 +05:30
|
|
|
- source travis/prepare.sh # installs qt and cmake. need to source because some env vars are set from there
|
|
|
|
|
|
|
|
# Actual work
|
2014-03-24 02:59:27 +05:30
|
|
|
before_script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2015-06-01 19:32:55 +05:30
|
|
|
- cmake -DCMAKE_PREFIX_PATH=$CMAKE_PREFIX_PATH ..
|
2014-03-24 02:59:27 +05:30
|
|
|
script:
|
2015-05-28 23:08:29 +05:30
|
|
|
- make -j4 && make test ARGS="-V"
|
2015-06-01 19:32:55 +05:30
|
|
|
|
2014-03-24 02:59:27 +05:30
|
|
|
notifications:
|
|
|
|
email: false
|