Kart-Public/.travis.yml

39 lines
572 B
YAML
Raw Normal View History

2016-02-05 18:09:14 -08:00
language: c
2016-02-05 16:30:03 -08:00
sudo: required
dist: trusty
2016-02-05 15:39:06 -08:00
env:
- CFLAGS=-Wno-absolute-value -Werror
2016-02-05 15:39:06 -08:00
compiler:
- gcc
- clang
addons:
apt:
packages:
2016-02-05 15:50:02 -08:00
- libsdl2-mixer-dev
2016-02-05 15:39:06 -08:00
- libpng-dev
2016-02-05 16:26:59 -08:00
- libgl1-mesa-dev
2016-02-05 18:00:46 -08:00
- libgme-dev
- p7zip-full
2016-02-05 15:39:06 -08:00
before_install:
- cmake --version
before_script:
- mkdir cache
- wget http://rosenthalcastle.org/srb2/SRB2-v2114-Installer.exe -c -O cache/SRB2-v2114-Installer.exe
2016-02-05 18:28:19 -08:00
- 7z x cache/SRB2-v2114-Installer.exe -oassets
2016-02-05 15:39:06 -08:00
- mkdir build
- cd build
- cmake ..
2016-02-05 17:50:35 -08:00
2016-02-05 18:33:00 -08:00
script: make
cache:
directories:
- $HOME/.ccache
- cache