Skip to content

Commit

Permalink
build,tools: tweak the travis config
Browse files Browse the repository at this point in the history
PR-URL: #22417
Reviewed-By: George Adams <george.adams@uk.ibm.com>
Reviewed-By: Matheus Marchini <matheus@sthima.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
refack authored and rvagg committed Nov 28, 2018
1 parent 2674336 commit 313ef6f
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .travis.yml
Expand Up @@ -3,21 +3,24 @@ compiler:
- clang
sudo: false
cache: ccache
os: linux
matrix:
include:
- os: linux
- name: "Linter"
node_js: "latest"
env:
- NODE=$(which node)
install:
- NODE=$(which node) make lint-md-build
- make lint-md-build
script:
- NODE=$(which node) make lint-ci
- os: linux
- make lint
- name: "Test Suite"
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
- make -j2 test
before_install:
- export CXX="ccache clang++ -Qunused-arguments"
- export CC="ccache clang -Qunused-arguments -Wno-unknown-warning-option"
- export JOBS=2

0 comments on commit 313ef6f

Please sign in to comment.