| # Copyright 2016, 2017 Peter Dimov |
| # Distributed under the Boost Software License, Version 1.0. |
| # (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) |
| |
| language: cpp |
| |
| sudo: false |
| |
| cache: |
| ccache: true |
| |
| branches: |
| only: |
| - master |
| - develop |
| - /feature\/.*/ |
| |
| env: |
| matrix: |
| - BOGUS_JOB=true |
| |
| matrix: |
| |
| exclude: |
| - env: BOGUS_JOB=true |
| |
| include: |
| - os: linux |
| compiler: g++ |
| env: TOOLSET=gcc |
| |
| - os: linux |
| compiler: g++-5 |
| env: TOOLSET=gcc-5 |
| addons: |
| apt: |
| packages: |
| - g++-5 |
| sources: |
| - ubuntu-toolchain-r-test |
| |
| - os: linux |
| compiler: g++-6 |
| env: TOOLSET=gcc-6 |
| addons: |
| apt: |
| packages: |
| - g++-6 |
| sources: |
| - ubuntu-toolchain-r-test |
| |
| - os: linux |
| compiler: g++-7 |
| env: TOOLSET=gcc-7 |
| addons: |
| apt: |
| packages: |
| - g++-7 |
| sources: |
| - ubuntu-toolchain-r-test |
| |
| - os: linux |
| compiler: g++-7 |
| env: TOOLSET=gcc-7 LINK=static |
| addons: |
| apt: |
| packages: |
| - g++-7 |
| sources: |
| - ubuntu-toolchain-r-test |
| |
| - os: linux |
| compiler: clang++ |
| env: TOOLSET=clang |
| |
| - os: linux |
| compiler: clang++ |
| env: TOOLSET=clang LINK=static |
| |
| - os: osx |
| compiler: clang++ |
| env: TOOLSET=clang |
| |
| - os: osx |
| compiler: clang++ |
| env: TOOLSET=clang LINK=static |
| |
| install: |
| - BOOST_BRANCH=develop && [ "$TRAVIS_BRANCH" == "master" ] && BOOST_BRANCH=master || true |
| - cd .. |
| - git clone -b $BOOST_BRANCH https://github.com/boostorg/boost.git boost-root |
| - cd boost-root |
| - git submodule update --init tools/build |
| - git submodule update --init libs/config |
| - git submodule update --init tools/boostdep |
| - cp -r $TRAVIS_BUILD_DIR/* libs/serialization |
| - python tools/boostdep/depinst/depinst.py serialization |
| - ./bootstrap.sh |
| - ./b2 headers |
| |
| script: |
| - ./b2 -j 3 libs/serialization/test toolset=$TOOLSET link=${LINK:-shared} |
| |
| notifications: |
| email: |
| on_success: always |