build with multiple gcc versions

This commit is contained in:
Daniel Sipka 2015-05-12 08:11:01 +02:00
parent f04756fa3e
commit bce9d570ba

View File

@ -2,17 +2,18 @@ language: cpp
env: env:
matrix: matrix:
- CXX=g++-4.9 - COMPILER=g++-4.9
- CXX=g++-4.8 - COMPILER=g++-4.8
- CXX=g++-4.7 - COMPILER=g++-4.7
before_install: before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:boost-latest/ppa -y - sudo add-apt-repository ppa:boost-latest/ppa -y
- sudo apt-get update -qq - sudo apt-get update -qq
- sudo apt-get install -qq cmake libboost1.54-dev libboost-program-options1.54-dev ${CXX} - sudo apt-get install -qq cmake libboost1.54-dev libboost-program-options1.54-dev ${COMPILER}
before_script: before_script:
- export CXX=${COMPILER}
- mkdir build - mkdir build
- cd build - cd build
- cmake -DWITH_UNIT_TESTS=ON .. - cmake -DWITH_UNIT_TESTS=ON ..