redream/.travis.yml

26 lines
436 B
YAML
Raw Normal View History

2016-04-21 09:07:51 +00:00
language: cpp
2016-04-21 09:47:35 +00:00
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources:
- kubuntu-backports
- ubuntu-toolchain-r-test
packages:
- cmake
- gcc-4.9
- g++-4.9
2016-04-21 09:07:51 +00:00
2016-04-21 09:47:35 +00:00
- os: osx
compiler: clang
2016-04-21 09:23:03 +00:00
2016-04-21 09:36:11 +00:00
script:
2016-04-21 09:47:35 +00:00
- if [ "$CC" = "gcc" ]; then export CC="gcc-4.9" CXX="g++-4.9"; fi
2016-04-21 09:07:51 +00:00
- mkdir build
- cd build
- cmake ..
- make