scummvm/.travis.yml
Colin Snover 41ee6431a9 BUILD: Remove macOS build target from Travis CI
The macOS build machines on Travis CI are failing constantly, and
for the time they've been enabled, they haven't really proven to
give any benefit. So, turning them off now, at least until Travis
CI gets more reliable so we are not contantly notified about their
broken build machines.
2017-09-09 11:22:48 -05:00

56 lines
897 B
YAML

language:
- cpp
sudo: required
addons:
apt:
packages:
- g++ make
- libsdl2-dev
- libsdl2-net-dev
- libcurl4-openssl-dev
- libjpeg-turbo8-dev
- 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"
branches:
only:
- master
compiler:
- gcc
- clang
os:
- linux
dist: trusty
script:
- ./configure --enable-all-engines
- make -j 2
- make test
- make devtools
notifications:
irc:
channels:
- "chat.freenode.net#scummvm"
on_success: change
on_failure: always