From 59b0379969d01cb928ab1ee7caaad6381a2c09b6 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 21 May 2016 16:38:39 +0300 Subject: [PATCH 1/5] Commit ID is for the local repo, not superproject --- .appveyor.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 4edc625..ed90c40 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -10,9 +10,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,6 +30,9 @@ 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 From 41ba1a07c0e25f4fc412dd2d9a96a6823d9a9e53 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 21 May 2016 16:46:43 +0300 Subject: [PATCH 2/5] Rename to appveyor.yml --- .appveyor.yml => appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) rename .appveyor.yml => appveyor.yml (99%) diff --git a/.appveyor.yml b/appveyor.yml similarity index 99% rename from .appveyor.yml rename to appveyor.yml index ed90c40..6ad0f18 100644 --- a/.appveyor.yml +++ b/appveyor.yml @@ -9,6 +9,8 @@ branches: - master - develop +build: no + install: - git clone -b %APPVEYOR_REPO_BRANCH% https://github.com/boostorg/boost.git boost - cd boost From 21a6662b35ea51ec0642efceb2e72e98c1b3dcef Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 21 May 2016 17:00:24 +0300 Subject: [PATCH 3/5] It's build: off, not build: no. --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 6ad0f18..323873d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,8 +9,6 @@ branches: - master - develop -build: no - install: - git clone -b %APPVEYOR_REPO_BRANCH% https://github.com/boostorg/boost.git boost - cd boost @@ -38,5 +36,7 @@ install: - bootstrap - b2 headers +build: off + test_script: - b2 libs/bind/test toolset=msvc-9.0 From 8dbd26692f5789b7b77851842ec8a455c26c7b98 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 21 May 2016 17:08:59 +0300 Subject: [PATCH 4/5] Add more toolsets to Appveyor. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 323873d..9e957eb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -39,4 +39,4 @@ install: 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 From 679ff6b5ba4628a245ee20676904ad35dcdce7e6 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 21 May 2016 17:53:43 +0300 Subject: [PATCH 5/5] Add branch to Appveyor version. --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 9e957eb..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: