ref: 5eb270d96c0cae417b7803766bfc0523a57e6b99
parent: d02ec93f9af486de517c4f7db034306b02946e48
author: Ralph Giles <[email protected]>
date: Fri Jul 8 06:23:24 EDT 2016
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.
--- 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