summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: a2c4c9b1acd4fd8421bf54859e14e72ed5135d4b (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
36
37
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:
  - ccache -s
  - ./bootstrap
  - ./configure CC="ccache $CC" CXX="ccache $CXX"
  - grep CXX config.status
  - make

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