mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
12b2465c1e
The travis guys were so nice to activate multi OS support for us (it's a beta feature). So now we build on OS X ass well to check for OS X specific breakage. Later I might investigate further and build with the minimum supported SDK version so that we don't break older systems by using newer Cocoa features.
41 lines
591 B
YAML
41 lines
591 B
YAML
language: c
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
env:
|
|
- LIBAV=libav-stable
|
|
- LIBAV=libav-git
|
|
- LIBAV=ffmpeg-stable
|
|
- LIBAV=ffmpeg-git
|
|
compiler:
|
|
- clang
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- ci
|
|
|
|
matrix:
|
|
exclude:
|
|
- os: osx
|
|
env: LIBAV=libav-stable
|
|
- os: osx
|
|
env: LIBAV=libav-git
|
|
- os: osx
|
|
env: LIBAV=ffmpeg-git
|
|
|
|
before_install: ./travis-deps libass-stable $LIBAV
|
|
script:
|
|
- ./bootstrap.py
|
|
- ./waf configure
|
|
- ./waf build
|
|
|
|
notifications:
|
|
email: false
|
|
irc:
|
|
channels:
|
|
- "irc.freenode.org#mpv-player-dev"
|
|
on_success: change
|
|
on_failure: always
|