summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 3ebfb290d8d61c7affdda6e867f2c9f879192282 (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
38
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_cache: ccache -s

before_script:
  - ./bootstrap
  - ./configure CC='ccache clang -Qunused-arguments -fcolor-diagnostics' CXX='ccache clang -Qunused-arguments -fcolor-diagnostics'
  - make

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

after_cache: ccache -s