scummvm/.travis.yml

57 lines
905 B
YAML
Raw Normal View History

2015-07-27 11:03:47 +00:00
language:
- cpp
sudo: required
2015-07-27 11:03:47 +00:00
addons:
apt:
packages:
- g++ make
- libsdl2-dev
- libsdl2-net-dev
- libcurl4-openssl-dev
- libjpeg-turbo8-dev
2015-07-27 11:03:47 +00:00
- libmpeg2-4-dev
- libogg-dev
- libvorbis-dev
- libflac-dev
- libmad0-dev
- libpng-dev
- libtheora-dev
- libfaad-dev
- libfluidsynth-dev
- libfreetype6-dev
- zlib1g-dev
before_install:
- "if [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]; then brew update; fi"
- "if [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]; then brew install sdl2 sdl2_net libvorbis flac mad theora faad2 libmpeg2; fi"
2015-07-27 11:03:47 +00:00
branches:
only:
- master
compiler:
- gcc
- clang
os:
- linux
- osx
2015-07-27 11:03:47 +00:00
dist: trusty
2015-07-27 11:03:47 +00:00
script:
- ./configure --enable-all-engines
- make -j 2
2015-07-27 11:03:47 +00:00
- make test
- make devtools
notifications:
irc:
channels:
- "chat.freenode.net#scummvm"
on_success: change
on_failure: always