1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-07-19 11:18:00 +02:00

Add .travis.yml

This commit is contained in:
Daniel Evans 2016-06-16 20:22:47 +01:00
parent f2b3086de2
commit 11e093332e

20
.travis.yml Normal file
View File

@ -0,0 +1,20 @@
sudo: required
dist: trusty
language: cpp
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libbullet-dev libsfml-dev libmad0-dev libglm-dev libsndfile-dev libopenal-dev libboost-test-dev
git:
depth: 3
script:
- mkdir build
- cd build
- cmake .. -DBUILD_TESTS=1 && make
- tests/run_tests
notifications:
email: false
# irc:
# channels:
# - chat.freenode.net#openrw
# template:
# - "%{repository}/%{branch} (%{commit} - %{author}): %{build_url}: %{message}"