summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 269893881a589218461a46cf97deccddf11cbba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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