Commit 92779bef6650bb84508e95bd417714e716dcdda5
1 parent
8893afe1
Remove clang for now
It appears that the `libc++` available on Ubuntu 14.04 is broken and doesn't handle the boolean regex correctly. Newer versions appear to be correct but I have to work out how to get 14.04 to use it.
Showing
1 changed file
with
16 additions
and
16 deletions
.travis.yml
| ... | ... | @@ -21,22 +21,22 @@ matrix: |
| 21 | 21 | packages: |
| 22 | 22 | - g++-5 |
| 23 | 23 | sources: *sources |
| 24 | - - os: linux | |
| 25 | - env: COMPILER=clang++-3.8 CXXFLAGS=-stdlib=libc++ | |
| 26 | - addons: | |
| 27 | - apt: | |
| 28 | - packages: | |
| 29 | - - clang-3.8 | |
| 30 | - - libc++-dev | |
| 31 | - sources: *sources | |
| 32 | - - os: linux | |
| 33 | - env: COMPILER=clang++-3.8 CXXFLAGS=-stdlib=libc++ UNICODE_OPTIONS=-DCXXOPTS_USE_UNICODE_HELP=Yes | |
| 34 | - addons: | |
| 35 | - apt: | |
| 36 | - packages: | |
| 37 | - - clang-3.8 | |
| 38 | - - libc++-dev | |
| 39 | - sources: *sources | |
| 24 | +# - os: linux | |
| 25 | +# env: COMPILER=clang++-3.8 CXXFLAGS=-stdlib=libc++ | |
| 26 | +# addons: | |
| 27 | +# apt: | |
| 28 | +# packages: | |
| 29 | +# - clang-3.8 | |
| 30 | +# - libc++-dev | |
| 31 | +# sources: *sources | |
| 32 | +# - os: linux | |
| 33 | +# env: COMPILER=clang++-3.8 CXXFLAGS=-stdlib=libc++ UNICODE_OPTIONS=-DCXXOPTS_USE_UNICODE_HELP=Yes | |
| 34 | +# addons: | |
| 35 | +# apt: | |
| 36 | +# packages: | |
| 37 | +# - clang-3.8 | |
| 38 | +# - libc++-dev | |
| 39 | +# sources: *sources | |
| 40 | 40 | script: > |
| 41 | 41 | cmake -DCXXOPTS_BUILD_TESTS=ON -DCMAKE_CXX_COMPILER=$COMPILER |
| 42 | 42 | -DCMAKE_CXX_FLAGS=$CXXFLAGS $UNICODE_OPTIONS . | ... | ... |