summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 0dbca826990351ab109532f277cb5d93e6915ff0 (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
29
30
31
32
33
34
35
language: cpp

branches:
  only:
    - master

compiler:
  - gcc
  - clang

cache:
  - apt
  - ccache

sudo: false

addons:
  apt:
    packages:
      - libdb-dev
      - libreadline-dev
      - libssl-dev
      - libwww-perl
      - xsltproc
      - zlib1g-dev

before_script:
  - ./bootstrap
  - ./configure
  - make

script:
  - ./runtest.pl ALL debug
  - ./runtest.pl ALL release