assert/.travis.yml
2018-12-18 20:28:50 +02:00

65 lines
1.4 KiB
YAML

# Copyright 2016-2018 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
branches:
only:
- master
- develop
- /feature\/.*/
env:
matrix:
- BOGUS_JOB=true
matrix:
exclude:
- env: BOGUS_JOB=true
include:
- os: linux
compiler: g++
env: TOOLSET=gcc CXXSTD=03,11
- os: linux
compiler: clang++
env: TOOLSET=clang CXXSTD=03,11,14,1z
- os: osx
compiler: clang++
env: TOOLSET=clang CXXSTD=03,11,14,1z
- os: linux
env: CMAKE=1
install: true
script:
- mkdir __build__ && cd __build__
- cmake ..
- cmake --build . --target check
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 tools/boost_install
- git submodule update --init libs/config
- git submodule update --init libs/core
- git submodule update --init libs/headers
- cp -r $TRAVIS_BUILD_DIR/* libs/assert
- ./bootstrap.sh
- ./b2 headers
script:
- ./b2 libs/assert/test toolset=$TOOLSET cxxstd=$CXXSTD
notifications:
email:
on_success: always