| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent f70e79a commit 7612024
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,6 +14,7 @@ | |||
| 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 | |
|---|---|---|---|
@@ -0,0 +1,24 @@ | |||
| 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 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments