Kart-Public/.travis.yml

31 lines
470 B
YAML
Raw Normal View History

2016-02-05 16:30:03 -08:00
sudo: required
dist: trusty
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
2016-02-05 17:50:35 -08:00
- p7zip
2016-02-05 15:39:06 -08:00
before_install:
- cmake --version
before_script:
2016-02-05 17:50:35 -08:00
- curl http://rosenthalcastle.org/srb2/SRB2-v2114-Installer.exe -o cache/SRB2-v2114-Installer.exe
- 7z x cache/SRB2-v2114-Installer.exe -o assets
2016-02-05 15:39:06 -08:00
- mkdir build
- cd build
- cmake ..
2016-02-05 17:50:35 -08:00
cache:
- ccache
directories:
- cache