From 6bcd3e05998b41fb3b2c8dcc79e4662854e5208d Mon Sep 17 00:00:00 2001 From: Federico Tomassetti Date: Thu, 13 Aug 2015 20:13:48 +0200 Subject: 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. --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..6a9b62419b --- /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 -- cgit v1.2.1