mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
531 B
30 lines
531 B
language: c |
|
sudo: false |
|
os: |
|
- linux |
|
- osx |
|
addons: |
|
apt: |
|
packages: |
|
- nasm |
|
- diffutils |
|
compiler: |
|
- clang |
|
- gcc |
|
matrix: |
|
exclude: |
|
- os: osx |
|
compiler: gcc |
|
cache: |
|
directories: |
|
- ffmpeg-samples |
|
before_install: |
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; fi |
|
install: |
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install nasm; fi |
|
script: |
|
- mkdir -p ffmpeg-samples |
|
- ./configure --samples=ffmpeg-samples --cc=$CC |
|
- make -j 8 |
|
- make fate-rsync |
|
- make check -j 8
|
|
|