Skip to content

Commit 9c487c2

Browse files
committed
travis: different repos for different versions
:-/
1 parent 6f7a4b1 commit 9c487c2

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.travis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,15 @@ env:
1919
- CMAKE_BUILD_TYPE="Debug" WITH_MPI=ON CXX=g++ BOOST_VERSION=1.55
2020

2121
before_install:
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
24-
- if [ "${CXX}" == "clang++" ]; then sudo add-apt-repository --yes ppa:h-rayflood/llvm; fi # clang++-3.2
22+
# boost packages
23+
- if [ "${BOOST_VERSION}" == "1.53" ]; then sudo add-apt-repository ppa:apokluda/boost1.53 --yes; fi
24+
- if [ "${BOOST_VERSION}" == "1.55" ]; then sudo add-apt-repository ppa:boost-latest/ppa --yes; fi
25+
# libstdc++-4.8
26+
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test --yes
27+
# clang++-3.2
28+
- if [ "${CXX}" == "clang++" ]; then sudo add-apt-repository --yes ppa:h-rayflood/llvm; fi
2529
- sudo apt-get update
2630

27-
2831
install:
2932
# note: clang needs g++-4.8 it for libstdc++ update
3033
- if [ "${CXX}" == "clang++" ]; then sudo apt-get -qq install clang-3.2; fi

0 commit comments

Comments
 (0)