mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-13 00:24:17 +00:00
29 lines
461 B
YAML
29 lines
461 B
YAML
language: c
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libsdl2-mixer-dev
|
|
- libpng-dev
|
|
- libgl1-mesa-dev
|
|
- libgme-dev
|
|
- p7zip-full
|
|
|
|
before_install:
|
|
- cmake --version
|
|
|
|
before_script:
|
|
- make cache
|
|
- wget http://rosenthalcastle.org/srb2/SRB2-v2114-Installer.exe -c -O cache/SRB2-v2114-Installer.exe
|
|
- 7z x cache/SRB2-v2114-Installer.exe -o assets
|
|
- mkdir build
|
|
- cd build
|
|
- cmake ..
|
|
|