From 6bcd3e05998b41fb3b2c8dcc79e4662854e5208d Mon Sep 17 00:00:00 2001
From: Federico Tomassetti <federico@tomassetti.me>
Date: Thu, 13 Aug 2015 20:13:48 +0200
Subject: [PATCH] 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

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000000..6a9b62419b4
--- /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
-- 
GitLab