| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 02209c5 commit 85a6dae
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,4 @@ | |||
| 1 | 1 | language: cpp | |
| 2 | - compiler: | ||
| 3 | - - clang | ||
| 4 | 2 | sudo: false | |
| 5 | 3 | cache: ccache | |
| 6 | 4 | os: linux | |
@@ -15,12 +13,15 @@ matrix: | |||
| 15 | 13 | # Lint the first commit in the PR. | |
| 16 | 14 | - \[ -z "$TRAVIS_COMMIT_RANGE" \] || (echo -e '\nLinting the commit message according to the guidelines at https://goo.gl/p2fr5Q\n' && git log $TRAVIS_COMMIT_RANGE --pretty=format:'%h' --no-merges | tail -1 | xargs npx -q core-validate-commit --no-validate-metadata) | |
| 17 | 15 | - name: "Test Suite" | |
| 16 | + addons: | ||
| 17 | + apt: | ||
| 18 | + sources: | ||
| 19 | + - ubuntu-toolchain-r-test | ||
| 20 | + packages: | ||
| 21 | + - g++-4.9 | ||
| 18 | 22 | install: | |
| 23 | + - export CC='ccache gcc-4.9' CXX='ccache g++-4.9' JOBS=2 | ||
| 19 | 24 | - ./configure | |
| 20 | 25 | - make -j2 V= | |
| 21 | 26 | script: | |
| 22 | - - make -j2 test | ||
| 23 | - before_install: | ||
| 24 | - - export CXX="ccache clang++ -Qunused-arguments" | ||
| 25 | - - export CC="ccache clang -Qunused-arguments -Wno-unknown-warning-option" | ||
| 26 | - - export JOBS=2 | ||
| 27 | + - PARALLEL_ARGS='--flaky-tests=skip' make -j1 test | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments