https://github.com/libav/libav
Raw File
Tip revision: c9ea47b37813c513e9d5e46bfceaa54f63e8e8bd authored by Sean McGovern on 14 May 2017, 18:14:56 UTC
Update changelog for v12.1
Tip revision: c9ea47b
.travis.yml
language: c
sudo: false
os:
  - linux
  - osx
addons:
  apt:
    packages:
      - yasm
      - diffutils
compiler:
  - clang
  - gcc
cache:
  directories:
    - libav-samples
before_install:
  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update --all; fi
install:
  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install yasm; fi
script:
  - mkdir -p libav-samples
  - ./configure --samples=libav-samples --cc=$CC
  - make -j 8
  - make fate-rsync
  - make check -j 8
back to top