summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-09-07 12:24:51 +0200
committerHendrik Leppkes <h.leppkes@gmail.com>2015-09-07 12:24:51 +0200
commit7e272100c9834b694d339f8578f28799a35607fc (patch)
tree8dc10c4288fbcf8b709231900c00cacbff02a2bf /.travis.yml
parentfb135139fd3992eb1f0eacc9cfd878e05b95ec46 (diff)
parent6bcd3e05998b41fb3b2c8dcc79e4662854e5208d (diff)
downloadffmpeg-7e272100c9834b694d339f8578f28799a35607fc.tar.gz
Merge commit '6bcd3e05998b41fb3b2c8dcc79e4662854e5208d'
* commit '6bcd3e05998b41fb3b2c8dcc79e4662854e5208d': build: Add support for travis CI Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000000..a0f6b245c9
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,19 @@
+language: c
+sudo: false
+addons:
+ apt:
+ packages:
+ - yasm
+ - bc
+compiler:
+ - clang
+ - gcc
+cache:
+ directories:
+ - ffmpeg-samples
+script:
+ - mkdir -p ffmpeg-samples
+ - ./configure --samples=ffmpeg-samples --cc=$CC
+ - make -j 8
+ - make fate-rsync
+ - make check -j 8