summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 8e9629a8ddd76fe8e9c71dbaa6cd5867c6ded03a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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