summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-06 10:05:14 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-06 10:05:14 +0100
commit1473b84ceed2be98006bf0e9e7a0487dfa42f034 (patch)
treeb954557120ff8bbf3d43a0765a212a6531b66851 /.travis.yml
parent2435ce47d2ac535feb811abd6a1f9b9f66d8f5e8 (diff)
Imported Upstream version 1.0.0upstream/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
+