pollymc/.travis.yml

40 lines
729 B
YAML
Raw Normal View History

# General set up
2014-03-24 02:59:27 +05:30
language: cpp
cache: apt
# Build matrix set up
2014-03-24 02:59:27 +05:30
compiler:
- gcc
# - clang
os:
- linux
# - osx
env:
- QT_VERSION=5.4.2
- QT_VERSION=5.5.1
# - QT_VERSION=5.6.2
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.2
- os: osx
env: QT_VERSION=5.5.1
# - os: osx
# env: QT_VERSION=5.6
2015-08-20 15:46:36 +05:30
# Install dependencies
2014-03-24 02:59:27 +05:30
install:
- 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
- cmake -DCMAKE_PREFIX_PATH=$CMAKE_PREFIX_PATH ..
2014-03-24 02:59:27 +05:30
script:
- make -j4 && make test ARGS="-V"