summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 11cb2a2f12758b50467c71bc22f1a40c966ae28f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: cpp
compiler:
  - clang
sudo: false
cache: ccache
matrix:
  include:
    - os: linux
      node_js: "latest"
      install:
        - NODE=$(which node) make lint-md-build
      script:
        - NODE=$(which node) make lint-ci
    - os: linux
      install:
        - ./configure
        - make -j2 V=
      script:
        - make -j2 test-ci
before_install:
  - export CXX="ccache clang++ -Qunused-arguments"
  - export CC="ccache clang -Qunused-arguments -Wno-unknown-warning-option"
  - export JOBS=2