1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-04 09:39:46 +02:00
openrw/.travis.yml

37 lines
941 B
YAML
Raw Normal View History

2016-06-16 21:22:47 +02:00
sudo: required
dist: trusty
2016-10-17 22:16:25 +02:00
language: generic
env:
- CXX=g++-5 CC=gcc-5
addons:
apt:
2016-10-17 22:16:25 +02:00
sources:
- ubuntu-toolchain-r-test
packages:
2016-10-17 22:16:25 +02:00
- g++-5
- libbullet-dev
- libsdl2-dev
- libglm-dev
- libopenal-dev
- libavcodec-dev
- libavformat-dev
- libboost-filesystem-dev
- libboost-program-options-dev
2016-08-05 18:44:49 +02:00
# Dependencies for BUILD_TESTS
- libboost-test-dev
# Dependencies for BUILD_VIEWER
- qt5-default
- libqt5opengl5-dev
2016-06-16 21:22:47 +02:00
git:
depth: 3
script:
2017-10-27 05:40:58 +02:00
- ctest -S cmake/ctest/travis_script.cmake -VV -DSRC_DIR=. -DBIN_DIR=build
- if [ -f FATAL_ERROR ]; then printf "Fatal failure detected.\nExiting with non-zero result code.\n"; exit 1; fi
2016-06-16 21:22:47 +02:00
notifications:
email: false
# irc:
# channels:
# - chat.freenode.net#openrw
# template:
# - "%{repository}/%{branch} (%{commit} - %{author}): %{build_url}: %{message}"