ddnet/.travis.yml
heinrich5991 e7d8c44bcc Test on Travis CI
This will allow us to test on macOS in the future.
2017-03-28 02:00:21 +02:00

18 lines
260 B
YAML

language: c++
sudo: false
dist: trusty
addons:
apt:
packages:
- libfreetype6-dev
- libsdl2-dev
script:
- mkdir build
- cd build
- cmake ..
- make everything
env:
global:
- CFLAGS="-Wdeclaration-after-statement -Werror"
- CXXFLAGS="-Werror"