File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 14
14
! .mailmap
15
15
! .nycrc
16
16
! .remarkrc
17
+ ! .travis.yml
17
18
18
19
core
19
20
vgcore. *
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