[Speex-dev] travis support for speex

Ralph Giles giles at thaumas.net
Tue Sep 20 20:38:08 UTC 2016


Here are two quick patches. One adds a config for the travis-ci.org
continuous integration service, the other is a small gitignore cleanup.

 -r
-------------- next part --------------
From 74d4ca733e14346d1ba95e6fedfc1dc0e660fe0f Mon Sep 17 00:00:00 2001
From: Ralph Giles <giles at thaumas.net>
Date: Tue, 20 Sep 2016 10:41:03 -0700
Subject: [PATCH 1/5] Add a config for the travis-ci.org continuous integration
 system.

Based on the config from the opus project.
---
 .travis.yml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 .travis.yml

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
-- 
2.10.0

-------------- next part --------------
From 6415cad8da4f7f59958107379f3975b6b27112e3 Mon Sep 17 00:00:00 2001
From: Ralph Giles <giles at thaumas.net>
Date: Tue, 20 Sep 2016 11:06:10 -0700
Subject: [PATCH 3/5] Add generated m4 files to .gitignore.

---
 .gitignore | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.gitignore b/.gitignore
index 523fe65..7c30999 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,6 +17,11 @@ configure
 depcomp
 install-sh
 ltmain.sh
+m4/libtool.m4
+m4/ltoptions.m4
+m4/ltsugar.m4
+m4/ltversion.m4
+m4/lt~obsolete.m4
 missing
 Makefile
 .deps
-- 
2.10.0



More information about the Speex-dev mailing list