ref: 1da904f385bff7089f5add38e197f9fe737fa60c
parent: e390a6f1b9c69b4d5d380adfbce8ce3693228590
author: Ralph Giles <giles@mozilla.com>
date: Thu Jul 7 11:28:01 EDT 2016
Add a travis build file. It seems we have to run this on ubuntu trusty images to satisfy the libopus-dev dependency, which currently requires sudo (I think as proxy to trigger a non-docker image?) and is therefore slower than vanilla container builds.
--- /dev/null
+++ b/.travis.yml
@@ -1,0 +1,17 @@
+language: c
+
+# We need at least Ubuntu 14.04 for the libopus dependency.
+sudo: required
+dist: trusty
+
+addons:
+ apt:
+ packages:
+ - libogg-dev
+ - libopus-dev
+
+script:
+ - ./autogen.sh
+ - ./configure
+ - make
+ - make distcheck