Browse Source

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.
tags/n3.0
Federico Tomassetti Luca Barbato 9 years ago
parent
commit
6bcd3e0599
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      .travis.yml

+ 19
- 0
.travis.yml View File

@@ -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

Loading…
Cancel
Save