Skip to content

Commit

Permalink
build: Add support for travis CI
Browse files Browse the repository at this point in the history
It is useful to support a future staging branch and to have an
automated consistency check on github pull requests.
  • Loading branch information
ftomassetti authored and lu-zero committed Aug 30, 2015
1 parent e88103a commit 6bcd3e0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6bcd3e0

Please sign in to comment.