https://github.com/libav/libav
Raw File
Tip revision: 64e34446cf8c3d0a62161f6a937a066d311d7899 authored by Sean McGovern on 30 August 2016, 01:22:03 UTC
Prepare for 12_alpha2 Release
Tip revision: 64e3444
.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