1
0
forked from boostorg/mp11

Add .travis.yml.

This commit is contained in:
Peter Dimov
2016-11-15 18:31:53 +02:00
parent 37f088a5bc
commit b059ed3bf9

39
.travis.yml Normal file
View File

@@ -0,0 +1,39 @@
# Copyright 2016 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
python: "2.7"
os:
- linux
- osx
branches:
only:
- master
- develop
install:
- cd ..
- git clone -b $TRAVIS_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
- cd boost-root
- git submodule update --init --depth 1 tools/build
- git submodule update --init --depth 1 libs/config
- git submodule update --init --depth 1 tools/boostdep
- cp -r $TRAVIS_BUILD_DIR/* libs/mp11
- python tools/boostdep/depinst/depinst.py mp11
- ./bootstrap.sh
- ./b2 headers
script:
- TOOLSET=gcc,clang
- if [ $TRAVIS_OS_NAME == osx ]; then TOOLSET=clang; fi
- ./b2 libs/mp11/test toolset=$TOOLSET
notifications:
email:
on_success: always