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