File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1414! .mailmap
1515! .nycrc
1616! .remarkrc
17+ ! .travis.yml
1718
1819core
1920vgcore. *
Original file line number Diff line number Diff line change 1+ language : cpp
2+ compiler :
3+ - clang
4+ sudo : false
5+ cache : ccache
6+ matrix :
7+ include :
8+ - os : linux
9+ node_js : " latest"
10+ script :
11+ - NODE=$(which node) make lint-ci
12+ - os : linux
13+ install :
14+ - ./configure
15+ - make -j2 V=
16+ script :
17+ - make -j2 test-ci
18+ before_install :
19+ - export HOMEBREW_NO_AUTO_UPDATE=1 # work around https://github.com/travis-ci/travis-ci/issues/7456
20+ - if [ $TRAVIS_OS_NAME = osx ]; then brew install ccache; fi
21+ - export PATH="/usr/local/opt/ccache/libexec:$PATH"
22+ - export CXX="ccache clang++ -Qunused-arguments"
23+ - export CC="ccache clang -Qunused-arguments"
24+ - export JOBS=2
You can’t perform that action at this time.
0 commit comments