.travis.yml is used for automatic builds on travis build farm
(https://travis-ci.org/) if the travis service hook is enabled for the
repo on github.
This inital yaml controller will run 2 different compilers (gcc, clang).
The test suite currently fails, that's why we don't abort yet.
--- /dev/null
+language: c
+
+compiler:
+ - gcc
+ - clang
+
+before_install:
+ - sudo apt-get -qq update
+
+install:
+ - sudo apt-get install -qq autopoint
+ - sudo apt-get install -qq bc
+ - sudo apt-get install -qq gtk-doc-tools
+
+before_script:
+ - ./autogen.sh
+
+script:
+ - ./configure
+ && make
+ && ( make check || echo "non-root checks failed" )
+ && make dist
+
+after_script:
+ - test -d tests/diff
+ && echo "cat test diffs:"
+ && find tests/diff -type f | xargs -r cat