mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
41ee6431a9
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.
56 lines
897 B
YAML
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
|