2015-08-13 18:13:48 +00:00
|
|
|
language: c
|
|
|
|
sudo: false
|
2015-11-17 12:23:08 +00:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
2015-08-13 18:13:48 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
2016-10-13 18:33:15 +00:00
|
|
|
- nasm
|
2015-09-12 06:23:45 +00:00
|
|
|
- diffutils
|
2015-08-13 18:13:48 +00:00
|
|
|
compiler:
|
|
|
|
- clang
|
|
|
|
- gcc
|
2017-04-18 18:21:35 +00:00
|
|
|
matrix:
|
|
|
|
exclude:
|
|
|
|
- os: osx
|
|
|
|
compiler: gcc
|
2015-08-13 18:13:48 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
2015-09-07 10:24:51 +00:00
|
|
|
- ffmpeg-samples
|
2015-11-17 12:23:08 +00:00
|
|
|
before_install:
|
|
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update --all; fi
|
|
|
|
install:
|
2016-10-13 18:33:15 +00:00
|
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install nasm; fi
|
2015-08-13 18:13:48 +00:00
|
|
|
script:
|
2015-09-07 10:24:51 +00:00
|
|
|
- mkdir -p ffmpeg-samples
|
|
|
|
- ./configure --samples=ffmpeg-samples --cc=$CC
|
2015-08-13 18:13:48 +00:00
|
|
|
- make -j 8
|
|
|
|
- make fate-rsync
|
|
|
|
- make check -j 8
|