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

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2016-09-20 20:41:03 +0300
committerRalph Giles <giles@thaumas.net>2016-09-20 23:47:17 +0300
commit1fdef7294c266f1fd662a77d7946192d04ad4255 (patch)
tree6388b63efaf779621479cd6b139cee7c64694480
parent497db349f47350a62ba42a91c10d7e203e64d167 (diff)
Add a config for the travis-ci.org continuous integration system. r=tmatth
Based on the config from the opus project.
-rw-r--r--.travis.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..0304c05
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,13 @@
+language: c
+
+env:
+ - CONFIG=""
+ - CONFIG="--enable-fixed-point"
+ - CONFIG="--enable-fixed-point --disable-float-api"
+ - CONFIG="--enable-vorbis-psy"
+ - CONFIG="--disable-binaries"
+
+script:
+ - ./autogen.sh
+ - ./configure $CONFIG
+ - make distcheck