Kart-Public/.travis.yml

46 lines
1.2 KiB
YAML
Raw Normal View History

2016-02-05 18:09:14 -08:00
language: c
2016-03-25 16:53:13 -07:00
sudo: required
2016-03-25 16:56:51 -07:00
dist: trusty
2016-03-25 16:16:35 -07:00
2016-03-29 21:23:28 -07:00
env:
2016-03-30 09:58:00 -07:00
- CFLAGS=-Wall -W -Werror
2016-03-29 21:23:28 -07:00
2016-03-25 17:57:57 -07:00
os:
- linux
- osx
2016-02-05 15:39:06 -08:00
compiler:
- gcc
- clang
2016-02-05 20:19:38 -08:00
cache:
2016-03-10 13:38:06 -08:00
apt: true
ccache: true
2016-02-05 20:19:38 -08:00
directories:
- $HOME/srb2_cache
2016-02-05 20:19:38 -08:00
2016-02-05 15:39:06 -08:00
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_script:
- wget --verbose --server-response -c http://rosenthalcastle.org/srb2/SRB2-v2115-assets-2.7z -O $HOME/srb2_cache/SRB2-v2115-assets-2.7z
- 7z x $HOME/srb2_cache/SRB2-v2115-assets-2.7z -oassets
2016-02-05 15:39:06 -08:00
- mkdir build
- cd build
- cmake ..
2016-02-05 17:50:35 -08:00
2016-03-25 16:48:39 -07:00
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
2016-03-25 16:56:05 -07:00
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install sdl2_mixer game-music-emu p7zip ; fi
2016-03-25 18:43:17 -07:00
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl -O -L https://www.libsdl.org/release/SDL2-2.0.4.dmg; hdiutil attach SDL2-2.0.4.dmg; sudo cp -a /Volumes/SDL2/SDL2.framework /Library/Frameworks/; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl -O -L https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.1.dmg; hdiutil attach SDL2_mixer-2.0.1.dmg; sudo cp -a /Volumes/SDL2_mixer/SDL2_mixer.framework /Library/Frameworks/; fi
- mkdir -p $HOME/srb2_cache
2016-03-25 16:48:39 -07:00
2016-05-26 21:57:44 -07:00
script: make -k