Fix Travis build

It seems that the g++4.5 package has been obsoleted:

  https://travis-ci.org/aantron/better-enums/jobs/271125909#L492

There also seems to be some kind of upstream problem with clang++3.5
when building in C++14 mode:

  https://travis-ci.org/aantron/better-enums/jobs/271125912#L1349

To unblock development, this commit removes the g++4.5 build, and allows
the clang++3.5 build to fail for now.

[skip appveyor]
This commit is contained in:
Anton Bachin 2017-09-14 13:32:41 -05:00
parent 73a1619cb7
commit ecdc88f066

View File

@ -8,12 +8,15 @@ env:
- COMPILER="g++-4.4" - COMPILER="g++-4.4"
- COMPILER="g++-4.8" - COMPILER="g++-4.8"
- COMPILER="g++-4.9" - COMPILER="g++-4.9"
- COMPILER="g++-4.5"
- COMPILER="clang++-3.3" - COMPILER="clang++-3.3"
- COMPILER="clang++-3.4" - COMPILER="clang++-3.4"
- COMPILER="clang++-3.5" - COMPILER="clang++-3.5"
- COMPILER="clang++-3.6" - COMPILER="clang++-3.6"
matrix:
allow_failures:
- env: COMPILER="clang++-3.5"
before_script: before_script:
- sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test - sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test
- sudo add-apt-repository --yes ppa:h-rayflood/llvm - sudo add-apt-repository --yes ppa:h-rayflood/llvm