From: Federico Tomassetti <[email protected]> It is useful to support an eventual staging branch and to have a first layer fate-check on github pull requests. ---
Now updated to be much faster, thanks again to Federico for his effort. .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..773327e --- /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 + - make -j 8 + - make fate-rsync + - make fate -j 8 -- 2.5.0 _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
