mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-13 00:24:17 +00:00
38 lines
572 B
YAML
38 lines
572 B
YAML
language: c
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
env:
|
|
- CFLAGS=-Wno-absolute-value -Werror
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libsdl2-mixer-dev
|
|
- libpng-dev
|
|
- libgl1-mesa-dev
|
|
- libgme-dev
|
|
- p7zip-full
|
|
|
|
before_install:
|
|
- cmake --version
|
|
|
|
before_script:
|
|
- mkdir cache
|
|
- wget http://rosenthalcastle.org/srb2/SRB2-v2114-Installer.exe -c -O cache/SRB2-v2114-Installer.exe
|
|
- 7z x cache/SRB2-v2114-Installer.exe -oassets
|
|
- mkdir build
|
|
- cd build
|
|
- cmake ..
|
|
|
|
script: make
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.ccache
|
|
- cache
|