mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
language: cpp
|
|
os:
|
|
- linux
|
|
- osx
|
|
dist: trusty
|
|
sudo: required
|
|
|
|
before_install:
|
|
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then . .travis.linux; fi
|
|
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then . .travis.osx; fi
|
|
|
|
before_script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake -G "Unix Makefiles" ..
|
|
|
|
script:
|
|
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then cd ..; xcodebuild -project osx/osx-vcmibuilder/vcmibuilder.xcodeproj/ -configuration Release CONFIGURATION_BUILD_DIR=..; cd build; fi
|
|
- make -j2
|
|
|
|
env:
|
|
- ignore=this
|
|
|
|
matrix:
|
|
exclude:
|
|
- env: ignore=this
|
|
include:
|
|
- os: linux
|
|
compiler: clang
|
|
env: REAL_CC=clang-3.4 REAL_CXX=clang++-3.4 PACKAGE=clang-3.4 SUPPORT=libstdc++-4.8-dev
|
|
- os: linux
|
|
compiler: clang
|
|
env: REAL_CC=clang-3.5 REAL_CXX=clang++-3.5 PACKAGE=clang-3.5 SUPPORT=libstdc++-4.8-dev
|
|
- os: linux
|
|
compiler: clang
|
|
env: REAL_CC=clang-3.6 REAL_CXX=clang++-3.6 PACKAGE=clang-3.6 SUPPORT=libstdc++-4.8-dev
|
|
- os: linux
|
|
compiler: gcc
|
|
env: REAL_CC=gcc-4.8 REAL_CXX=g++-4.8 PACKAGE=g++-4.8 SUPPORT=
|
|
- os: osx
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- vcmi.fail@mixaill.tk
|
|
- saven.ivan@gmail.com
|
|
on_success: change
|
|
on_failure: always
|