diff --git a/.appveyor.yml b/appveyor.yml similarity index 81% rename from .appveyor.yml rename to appveyor.yml index 4edc625..bcbd29e 100644 --- a/.appveyor.yml +++ b/appveyor.yml @@ -2,6 +2,8 @@ # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) +version: 1.0.{build}-{branch} + shallow_clone: true branches: @@ -10,9 +12,8 @@ branches: - develop 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 - - git checkout -q %APPVEYOR_REPO_COMMIT% - git submodule init libs/bind - git submodule init libs/assert - git submodule init libs/config @@ -31,8 +32,13 @@ install: - git submodule init tools/build - git submodule init tools/inspect - git submodule update + - cd libs\bind + - git checkout -q %APPVEYOR_REPO_COMMIT% + - cd ..\.. - bootstrap - b2 headers +build: off + 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