1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/.travis.yml

65 lines
1.9 KiB
YAML
Raw Normal View History

2014-07-12 16:35:55 +03:00
language: cpp
2014-07-12 20:20:02 +03:00
2014-07-12 16:35:55 +03:00
before_install:
#new boost
- sudo add-apt-repository --yes ppa:boost-latest/ppa
#new GCC
- sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test
2014-07-12 19:50:48 +03:00
#new Clang
- sudo add-apt-repository --yes ppa:h-rayflood/llvm
2014-07-12 16:35:55 +03:00
#new SDL2
- sudo add-apt-repository --yes ppa:zoogie/sdl2-snapshots
#new Qt
- sudo add-apt-repository --yes ppa:beineri/opt-qt532
2014-07-13 11:44:39 +03:00
#new FFmpeg
2015-01-28 22:07:40 +02:00
- sudo add-apt-repository --yes ppa:jon-severinsson/ffmpeg
2014-10-12 17:38:29 +03:00
#new CMake
2014-10-12 18:07:44 +03:00
- sudo add-apt-repository --yes ppa:andykimpe/cmake
2014-07-12 16:35:55 +03:00
- sudo apt-get update -qq
2014-07-13 11:44:39 +03:00
2014-07-13 11:33:44 +03:00
- sudo apt-get install -qq $SUPPORT
2014-07-12 19:50:48 +03:00
- sudo apt-get install -qq $PACKAGE
- sudo apt-get install -qq cmake libboost1.55-all-dev zlib1g-dev
2014-07-12 16:35:55 +03:00
- sudo apt-get install -qq libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev
2014-07-13 11:44:39 +03:00
- sudo apt-get install -qq libavformat-dev libswscale-dev
2014-10-11 13:29:30 +03:00
- sudo apt-get install -qq qt53declarative
2014-07-12 16:35:55 +03:00
2014-07-12 19:50:48 +03:00
#setup compiler
- source /opt/qt53/bin/qt53-env.sh
2014-07-12 19:50:48 +03:00
- export CC=${REAL_CC} CXX=${REAL_CXX}
2014-07-12 16:35:55 +03:00
before_script:
- mkdir build
- cd build
- cmake ..
script:
2014-07-12 20:20:02 +03:00
- make
2014-07-13 11:44:39 +03:00
2014-07-12 20:20:02 +03:00
env:
- ignore=this
2014-07-13 11:44:39 +03:00
2014-07-12 19:50:48 +03:00
matrix:
2014-07-12 20:20:02 +03:00
exclude:
- env: ignore=this
2014-07-12 19:50:48 +03:00
include:
- compiler: clang # fails all the time - missing packages?
env: REAL_CC=clang-3.2 REAL_CXX=clang++-3.2 PACKAGE=clang-3.2 SUPPORT=g++-4.8
2014-07-12 19:50:48 +03:00
- compiler: clang
2014-07-13 11:33:44 +03:00
env: REAL_CC=clang-3.3 REAL_CXX=clang++-3.3 PACKAGE=clang-3.3 SUPPORT=g++-4.8
2014-07-12 19:50:48 +03:00
- compiler: clang
2014-07-13 11:33:44 +03:00
env: REAL_CC=clang-3.4 REAL_CXX=clang++-3.4 PACKAGE=clang-3.4 SUPPORT=g++-4.8
#- compiler: gcc # fails due to running out of memory - vcmi need too much of it for successfull compilation
# env: REAL_CC=gcc-4.7 REAL_CXX=g++-4.7 PACKAGE=g++-4.7 SUPPORT=
#- compiler: gcc # same as 4.7
# env: REAL_CC=gcc-4.8 REAL_CXX=g++-4.8 PACKAGE=g++-4.8 SUPPORT=
2014-07-13 11:44:39 +03:00
2014-07-12 16:35:55 +03:00
notifications:
email:
recipients:
- vcmi.fail@mixaill.tk
- saven.ivan@gmail.com
2014-07-12 16:35:55 +03:00
on_success: change
on_failure: always