1
0
forked from boostorg/bind

Merge branch 'develop'

This commit is contained in:
Peter Dimov
2016-05-21 17:57:32 +03:00

View File

@@ -2,6 +2,8 @@
# Distributed under the Boost Software License, Version 1.0. # Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) # (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
version: 1.0.{build}-{branch}
shallow_clone: true shallow_clone: true
branches: branches:
@@ -10,9 +12,8 @@ branches:
- develop - develop
install: install:
- git clone https://github.com/boostorg/boost.git boost - git clone -b %APPVEYOR_REPO_BRANCH% https://github.com/boostorg/boost.git boost
- cd boost - cd boost
- git checkout -q %APPVEYOR_REPO_COMMIT%
- git submodule init libs/bind - git submodule init libs/bind
- git submodule init libs/assert - git submodule init libs/assert
- git submodule init libs/config - git submodule init libs/config
@@ -31,8 +32,13 @@ install:
- git submodule init tools/build - git submodule init tools/build
- git submodule init tools/inspect - git submodule init tools/inspect
- git submodule update - git submodule update
- cd libs\bind
- git checkout -q %APPVEYOR_REPO_COMMIT%
- cd ..\..
- bootstrap - bootstrap
- b2 headers - b2 headers
build: off
test_script: test_script:
- b2 libs/bind/test toolset=msvc-9.0 - b2 libs/bind/test toolset=msvc-9.0,msvc-10.0,msvc-11.0,msvc-12.0