mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 19:49:56 +00:00
4f9297ac3b
NASM is more actively maintained and permits generating dependency information
as a sideeffect of assembling, thus cutting build times in half.
(Cherry-picked from libav commit 57b753b445
)
Signed-off-by: James Almer <jamrial@gmail.com>
27 lines
474 B
YAML
27 lines
474 B
YAML
language: c
|
|
sudo: false
|
|
os:
|
|
- linux
|
|
- osx
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- nasm
|
|
- diffutils
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
cache:
|
|
directories:
|
|
- ffmpeg-samples
|
|
before_install:
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update --all; 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
|