Skip to content

Commit fcba993

Browse files
committed
travis: switch to other Boost PPA and test 1.53 and 1.55
1 parent fccbb5e commit fcba993

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

.travis.yml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,22 @@ language:
55
# -> https://github.com/travis-ci/travis-ci/issues/1519
66
env:
77
matrix:
8-
- CMAKE_BUILD_TYPE="Release" WITH_MPI=OFF CXX=clang++
9-
- CMAKE_BUILD_TYPE="Release" WITH_MPI=OFF CXX=g++
10-
- CMAKE_BUILD_TYPE="Release" WITH_MPI=ON CXX=g++
11-
- CMAKE_BUILD_TYPE="Debug" WITH_MPI=OFF CXX=clang++
12-
- CMAKE_BUILD_TYPE="Debug" WITH_MPI=OFF CXX=g++
13-
- CMAKE_BUILD_TYPE="Debug" WITH_MPI=ON CXX=g++
8+
- CMAKE_BUILD_TYPE="Release" WITH_MPI=OFF CXX=clang++ BOOST_VERSION=1.53
9+
- CMAKE_BUILD_TYPE="Release" WITH_MPI=OFF CXX=g++ BOOST_VERSION=1.53
10+
- CMAKE_BUILD_TYPE="Release" WITH_MPI=ON CXX=g++ BOOST_VERSION=1.53
11+
- CMAKE_BUILD_TYPE="Debug" WITH_MPI=OFF CXX=clang++ BOOST_VERSION=1.53
12+
- CMAKE_BUILD_TYPE="Debug" WITH_MPI=OFF CXX=g++ BOOST_VERSION=1.53
13+
- CMAKE_BUILD_TYPE="Debug" WITH_MPI=ON CXX=g++ BOOST_VERSION=1.53
14+
- CMAKE_BUILD_TYPE="Release" WITH_MPI=OFF CXX=clang++ BOOST_VERSION=1.55
15+
- CMAKE_BUILD_TYPE="Release" WITH_MPI=OFF CXX=g++ BOOST_VERSION=1.55
16+
- CMAKE_BUILD_TYPE="Release" WITH_MPI=ON CXX=g++ BOOST_VERSION=1.55
17+
- CMAKE_BUILD_TYPE="Debug" WITH_MPI=OFF CXX=clang++ BOOST_VERSION=1.55
18+
- CMAKE_BUILD_TYPE="Debug" WITH_MPI=OFF CXX=g++ BOOST_VERSION=1.55
19+
- CMAKE_BUILD_TYPE="Debug" WITH_MPI=ON CXX=g++ BOOST_VERSION=1.55
1420

1521
before_install:
16-
- sudo add-apt-repository ppa:apokluda/boost1.53 --yes
17-
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test --yes # libstdc++-4.8
22+
- sudo add-apt-repository ppa:boost-latest/ppa --yes # boost packages
23+
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test --yes # libstdc++-4.8
1824
- if [ "${CXX}" == "clang++" ]; then sudo add-apt-repository --yes ppa:h-rayflood/llvm; fi # clang++-3.2
1925
- sudo apt-get update
2026

@@ -23,8 +29,8 @@ install:
2329
# note: clang needs g++-4.8 it for libstdc++ update
2430
- if [ "${CXX}" == "clang++" ]; then sudo apt-get -qq install clang-3.2; fi
2531
- if [ "${WITH_MPI}" == "ON" ]; then sudo apt-get -qq install mpich2 libmpich2-dev; fi
26-
- sudo apt-get install g++-4.8 # clang need it for libstdc++ update
27-
- sudo apt-get install libboost1.53-all-dev libfftw3-3 libfftw3-dev
32+
- sudo apt-get install g++-4.8
33+
- sudo apt-get install libboost${BOOST_VERSION}-all-dev libfftw3-3 libfftw3-dev
2834

2935
before_script:
3036
# update compilers

0 commit comments

Comments
 (0)