Skip to content

Commit

Permalink
travis: Add a minimal build configuration.
Browse files Browse the repository at this point in the history
This is a continuous integration service integrated with github.

This just invokes 'make check'. 'make distcheck' fails with a permission issue:

    cannot move `/home/travis/build/rillian/vorbis-tools/vorbis-tools-1.4.0/_build/po/sv.new.po' to `sv.po': Permission denied
  • Loading branch information
rillian committed Mar 30, 2016
1 parent 16b4a5f commit b8fa89d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .travis.yml
@@ -0,0 +1,12 @@
language: c

addons:
apt:
packages:
- libogg-dev
- libvorbis-dev

script:
- ./autogen.sh
- ./configure
- make -j2 V=1 check

0 comments on commit b8fa89d

Please sign in to comment.