[FFmpeg-cvslog] build: Add support for travis CI

Federico Tomassetti git at videolan.org
Mon Sep 7 12:25:55 CEST 2015


ffmpeg | branch: master | Federico Tomassetti <federico at tomassetti.me> | Thu Aug 13 20:13:48 2015 +0200| [6bcd3e05998b41fb3b2c8dcc79e4662854e5208d] | committer: Luca Barbato

build: Add support for travis CI

It is useful to support a future staging branch and to have an
automated consistency check on github pull requests.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6bcd3e05998b41fb3b2c8dcc79e4662854e5208d
---

 .travis.yml |   19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..6a9b624
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,19 @@
+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



More information about the ffmpeg-cvslog mailing list