summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..2698938
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,28 @@
+language: cpp
+sudo: required
+
+addons:
+ apt:
+ update: true
+ packages:
+ - docbook-to-man
+ - libboost-date-time-dev
+ - libboost-dev
+ - libboost-program-options-dev
+ - libcppunit-dev
+ - libxml2-dev
+
+compiler:
+ - gcc
+ - clang
+arch:
+ - amd64
+ - ppc64le
+
+script:
+ - ./autogen.sh && make && make check
+
+notifications:
+ email:
+ on_success: never
+ on_failure: always