mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 05:00:37 +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
|