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

github.com/mumble-voip/speexdsp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen <stephengroat@users.noreply.github.com>2017-01-22 04:32:59 +0300
committerTristan Matthews <tmatth@videolan.org>2017-01-22 22:16:02 +0300
commit79822c8fb79d202cbe7e899f7406acf17beb247c (patch)
treedc74ca056284a920297b0e5f2e20f9d167470958
parent76c944d24ba07c7a19725f951acb1d481546e1e3 (diff)
Create .travis.yml
-rw-r--r--.travis.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..c93c75e
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,19 @@
+language: c
+
+env:
+ - CONFIG=""
+ - CONFIG="--enable-fixed-point"
+ - CONFIG="--enable-fixed-point --disable-float-api"
+
+os:
+ - linux
+ - osx
+
+compiler:
+ - gcc
+ - clang
+
+script:
+ - ./autogen.sh
+ - ./configure $CONFIG
+ - make distcheck