@@ -12,7 +12,7 @@ matrix:
1212 compiler : clang
1313 include :
1414 - os : osx
15- osx_image : xcode9.2
15+ osx_image : xcode10
1616 env : TOOL=test
1717 - os : linux
1818 env : TOOL=test
@@ -24,6 +24,10 @@ matrix:
2424 - gcc-8
2525 - g++-8
2626 - cmake
27+ - libboost-system1.55-dev
28+ - libboost-filesystem1.55-dev
29+ - libboost-test1.55-dev
30+ - libboost-program-options1.55-dev
2731 - os : linux
2832 env : TOOL=coverage
2933 addons :
@@ -40,6 +44,10 @@ matrix:
4044 - doxygen-latex
4145 - doxygen-gui
4246 - graphviz
47+ - libboost-system1.55-dev
48+ - libboost-filesystem1.55-dev
49+ - libboost-test1.55-dev
50+ - libboost-program-options1.55-dev
4351 branches :
4452 only :
4553 - dev
@@ -50,15 +58,10 @@ matrix:
5058 local_dir : build/doc/html
5159 on :
5260 branch : dev
53- before_install :
54- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd ..; wget https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.tar.gz; fi
55- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then tar xf boost_1_64_0.tar.gz; cd $TRAVIS_BUILD_DIR; fi
5661install :
5762 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 90; fi
58- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd ../boost_1_64_0; ./bootstrap.sh --with-libraries=test,program_options,system,filesystem; fi
59- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo ./b2 -j 4 install > /dev/null 2>&1; cd $TRAVIS_BUILD_DIR; fi
6063before_script :
61- - mkdir build; cd build
64+ - cd $TRAVIS_BUILD_DIR; mkdir build; cd build
6265script :
6366 - if [[ $TOOL != "coverage" ]]; then cmake .. -DCMAKE_INSTALL_PREFIX=$TRAVIS_BUILD_DIR/installed;
6467 else cmake .. -DCMAKE_BUILD_TYPE=Debug; fi
0 commit comments