summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-06 10:05:16 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-06 10:05:16 +0100
commit91434613c7355fd3a4901bf3a27cc74825db5a86 (patch)
treecf8897c9abbb7fae594736bee92db5adf8da8714 /.travis.yml
parent8645a7dc4e5f7dd614661b21b551aa18039fe452 (diff)
parent1473b84ceed2be98006bf0e9e7a0487dfa42f034 (diff)
Merge tag 'upstream/1.0.0'
Upstream version 1.0.0
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..369fe61
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,32 @@
+language: cpp
+
+sudo: required
+dist: trusty
+
+compiler:
+ - gcc
+ - clang
+
+before_install:
+ - echo $LANG
+ - echo $LC_ALL
+ - if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update && sudo apt-get install -y libcppunit-dev; fi
+ - if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install cppunit; fi
+
+before_script:
+ - if [ $TRAVIS_OS_NAME == linux ]; then libtoolize; fi
+ - if [ $TRAVIS_OS_NAME == osx ]; then glibtoolize; fi
+ - aclocal
+ - autoheader
+ - autoconf
+ - automake --add-missing
+ - ./configure
+
+script:
+ - make
+ - make check
+
+os:
+ - linux
+ - osx
+