Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@mozilla.com>2016-07-08 20:23:24 +0300
committerRalph Giles <giles@mozilla.com>2016-07-08 20:43:25 +0300
commit5eb270d96c0cae417b7803766bfc0523a57e6b99 (patch)
tree1e7769d58fc602ba5a8d6063c1a8ea220d4456c4 /.travis.yml
parentd02ec93f9af486de517c4f7db034306b02946e48 (diff)
Test common configure switches on travis.
Add a matrix build testing the most common options. I don't see a way to also invoke Makefile.unix without wrapping everything in a script, so leave that to jenkins for now.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 3aeeb803..9bda9817 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,13 @@
language: c
+env:
+ - CONFIG=""
+ - CONFIG="--enable-assertions"
+ - CONFIG="--enable-fixed-point"
+ - CONFIG="--enable-fixed-point --disable-float-api"
+ - CONFIG="--enable-fixed-point --enable-assertions"
+
script:
- ./autogen.sh
- - ./configure
+ - ./configure $CONFIG
- make distcheck