mirror of
https://github.com/mpv-player/mpv
synced 2024-11-07 01:47:00 +01:00
7561adb14d
We don't actually want to test all possible combinations; we just want to make sure that each thing (e.g. linux/osx, ffmpeg/libav) is tested once. Exclude Linux + ffmpeg-stable, because ffmpeg-stable is already tested on OSX. Exclude clang on Linux, because OSX needs clang, but Coverity (running on Linux) needs gcc - so we use gcc only on Linux. I also wanted to reduce the matrix to a single configuration when running Coverity, but apparently this is not possible. (See travis-ci/travis-ci#1975.)
63 lines
1.2 KiB
YAML
63 lines
1.2 KiB
YAML
language: c
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
env:
|
|
matrix:
|
|
- LIBAV=libav-stable
|
|
- LIBAV=libav-git
|
|
- LIBAV=ffmpeg-stable
|
|
- LIBAV=ffmpeg-git
|
|
global:
|
|
# Coverity token
|
|
- secure: "H21mSRlMhk4BKS0xHZvCFGJxteCP0hRVUxTuNfM2Z9HBsyutuLEYMtViLO86VtM+Tqla3xXPzUdS4ozLwI72Ax/5ZUDXACROj73yW6QhFB5D6rLut12+FjqC7M33Qv2hl0xwgNBmR5dsm1ToP37+Wn+ecJQNvN8fkTXF+HVzOEw="
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- ci
|
|
- coverity_scan
|
|
|
|
matrix:
|
|
exclude:
|
|
- os: osx
|
|
env: LIBAV=libav-stable
|
|
- os: osx
|
|
env: LIBAV=libav-git
|
|
- os: osx
|
|
env: LIBAV=ffmpeg-git
|
|
- os: osx
|
|
compiler: gcc
|
|
- os: linux
|
|
env: LIBAV=ffmpeg-stable
|
|
- os: linux
|
|
compiler: clang
|
|
|
|
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
|
|
|
|
addons:
|
|
coverity_scan:
|
|
project:
|
|
name: "mpv-player/mpv"
|
|
description: "Build submitted via Travis CI"
|
|
notification_email: mpv-team@googlegroups.com
|
|
build_command_prepend: "./bootstrap.py && ./waf configure"
|
|
build_command: "./waf build"
|
|
branch_pattern: coverity_scan
|