Commit 2015a7438acba92111a2a653c1eb19e978d855bb
1 parent
5b774d7a
Add GCC 4.9 to travis build
Showing
1 changed file
with
17 additions
and
1 deletions
.travis.yml
| ... | ... | @@ -2,10 +2,26 @@ sudo: required |
| 2 | 2 | dist: trusty |
| 3 | 3 | language: cpp |
| 4 | 4 | os: |
| 5 | - - osx | |
| 5 | + - linux | |
| 6 | 6 | matrix: |
| 7 | 7 | include: |
| 8 | 8 | - os: linux |
| 9 | + env: COMPILER=g++-4.9 | |
| 10 | + addons: | |
| 11 | + apt: | |
| 12 | + packages: | |
| 13 | + - g++-4.9 | |
| 14 | + sources: &sources | |
| 15 | + - llvm-toolchain-precise-3.8 | |
| 16 | + - ubuntu-toolchain-r-test | |
| 17 | + - os: linux | |
| 18 | + env: COMPILER=g++-4.9 UNICODE_OPTIONS=-DCXXOPTS_USE_UNICODE_HELP=Yes | |
| 19 | + addons: | |
| 20 | + apt: | |
| 21 | + packages: | |
| 22 | + - g++-4.9 | |
| 23 | + sources: *sources | |
| 24 | + - os: linux | |
| 9 | 25 | env: COMPILER=g++-5 |
| 10 | 26 | addons: |
| 11 | 27 | apt: | ... | ... |