1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 06:52:34 +02:00
openrw/.travis.yml
Daniel Evans b4aa01e4bb Use C++14
2016-10-24 21:26:51 +01:00

39 lines
869 B
YAML

sudo: required
dist: trusty
language: generic
env:
- CXX=g++-5 CC=gcc-5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- libbullet-dev
- libsdl2-dev
- libmad0-dev
- libglm-dev
- libsndfile-dev
- libopenal-dev
- libboost-filesystem-dev
- libboost-program-options-dev
# Dependencies for BUILD_TESTS
- libboost-test-dev
# Dependencies for BUILD_VIEWER
- qt5-default
- libqt5opengl5-dev
git:
depth: 3
script:
- mkdir build
- cd build
- cmake .. -DBUILD_TESTS=1 -DTESTS_NODATA=1 -DBUILD_VIEWER=1 && make
- tests/run_tests
notifications:
email: false
# irc:
# channels:
# - chat.freenode.net#openrw
# template:
# - "%{repository}/%{branch} (%{commit} - %{author}): %{build_url}: %{message}"