mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 18:32:22 +00:00
6bcd3e0599
It is useful to support a future staging branch and to have an automated consistency check on github pull requests.
20 lines
285 B
YAML
20 lines
285 B
YAML
language: c
|
|
sudo: false
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- yasm
|
|
- bc
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
cache:
|
|
directories:
|
|
- libav-samples
|
|
script:
|
|
- mkdir -p libav-samples
|
|
- ./configure --samples=libav-samples --cc=$CC
|
|
- make -j 8
|
|
- make fate-rsync
|
|
- make check -j 8
|