summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@mozilla.com>2016-07-08 10:23:24 -0700
committerRalph Giles <giles@mozilla.com>2016-07-08 10:43:25 -0700
commit5eb270d96c0cae417b7803766bfc0523a57e6b99 (patch)
tree1e7769d58fc602ba5a8d6063c1a8ea220d4456c4
parentd02ec93f9af486de517c4f7db034306b02946e48 (diff)
downloadopus-5eb270d96c0cae417b7803766bfc0523a57e6b99.tar.gz
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.
-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