https://github.com/libav/libav
Raw File
Tip revision: 7b7933088749c04a21fd95b339d2c0e30b7a633c authored by Sean McGovern on 16 October 2016, 21:03:15 UTC
Prepare for 12 Release
Tip revision: 7b79330
.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