2017-05-23 19:04:55 +01:00
|
|
|
# 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)
|
|
|
|
|
|
|
|
|
|
version: 1.0.{build}-{branch}
|
|
|
|
|
|
|
|
|
|
shallow_clone: true
|
|
|
|
|
|
|
|
|
|
branches:
|
|
|
|
|
only:
|
|
|
|
|
- master
|
|
|
|
|
- develop
|
|
|
|
|
|
|
|
|
|
platform:
|
|
|
|
|
- x64
|
|
|
|
|
|
2017-05-23 19:06:54 +01:00
|
|
|
environment:
|
|
|
|
|
matrix:
|
2017-05-29 18:22:10 +01:00
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
|
ARGS: --toolset=msvc-14.1 address-model=64
|
|
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
|
ARGS: --toolset=msvc-14.1 address-model=32
|
|
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
2017-12-09 18:08:39 +00:00
|
|
|
ARGS: --toolset=msvc-14.1 address-model=64 cxxflags=-std:c++latest cxxflags=-permissive-
|
2019-05-14 08:47:13 -04:00
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
|
ARGS: --toolset=clang-win address-model=64
|
|
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
|
ARGS: --toolset=clang-win address-model=32
|
2017-05-25 08:47:08 +01:00
|
|
|
- ARGS: --toolset=msvc-9.0 address-model=32
|
|
|
|
|
- ARGS: --toolset=msvc-10.0 address-model=32
|
|
|
|
|
- ARGS: --toolset=msvc-11.0 address-model=32
|
|
|
|
|
- ARGS: --toolset=msvc-12.0 address-model=32
|
|
|
|
|
- ARGS: --toolset=msvc-14.0 address-model=32
|
|
|
|
|
- ARGS: --toolset=msvc-12.0 address-model=64
|
|
|
|
|
- ARGS: --toolset=msvc-14.0 address-model=64
|
2017-05-29 18:22:10 +01:00
|
|
|
- ARGS: --toolset=msvc-14.0 address-model=64 cxxflags=-std:c++latest
|
2018-01-28 19:07:22 +00:00
|
|
|
- ARGS: --toolset=gcc address-model=64
|
|
|
|
|
CXXSTD: 03,11,14,1z
|
2017-05-27 09:57:41 +01:00
|
|
|
PATH: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH%
|
2018-01-28 19:07:22 +00:00
|
|
|
- ARGS: --toolset=gcc address-model=64
|
|
|
|
|
CXXSTD: 03,11,14,1z
|
2018-01-28 18:37:04 +00:00
|
|
|
PATH: C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH%
|
2018-01-28 19:07:22 +00:00
|
|
|
- ARGS: --toolset=gcc address-model=32 linkflags=-Wl,-allow-multiple-definition
|
|
|
|
|
CXXSTD: 03,11,14,1z
|
2017-05-27 09:57:41 +01:00
|
|
|
PATH: C:\MinGW\bin;%PATH%
|
2018-01-28 19:07:22 +00:00
|
|
|
- ARGS: --toolset=gcc address-model=64
|
|
|
|
|
CXXSTD: 03,11,14,1z
|
2018-01-28 18:37:04 +00:00
|
|
|
PATH: C:\cygwin64\bin;%PATH%
|
2018-01-28 19:07:22 +00:00
|
|
|
- ARGS: --toolset=gcc address-model=32
|
|
|
|
|
CXXSTD: 03,11,14,1z
|
2018-01-28 18:37:04 +00:00
|
|
|
PATH: C:\cygwin\bin;%PATH%
|
2017-05-23 19:04:55 +01:00
|
|
|
|
|
|
|
|
install:
|
|
|
|
|
- cd ..
|
2017-05-23 19:18:12 +01:00
|
|
|
- git clone -b %APPVEYOR_REPO_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root
|
|
|
|
|
- cd boost-root
|
2017-05-27 09:57:41 +01:00
|
|
|
- xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\config
|
2017-05-23 19:04:55 +01:00
|
|
|
- git submodule update --init tools/build
|
2018-12-20 09:00:23 +00:00
|
|
|
- git submodule update --init tools/boost_install
|
|
|
|
|
- git submodule update --init libs/headers
|
2017-05-27 09:57:41 +01:00
|
|
|
- git submodule update --init libs/detail
|
|
|
|
|
- git submodule update --init libs/core
|
|
|
|
|
- git submodule update --init libs/assert
|
|
|
|
|
- git submodule update --init libs/type_traits
|
2017-05-23 19:04:55 +01:00
|
|
|
- bootstrap
|
|
|
|
|
- b2 headers
|
2017-05-29 18:22:10 +01:00
|
|
|
|
2017-05-23 19:04:55 +01:00
|
|
|
build: off
|
|
|
|
|
|
|
|
|
|
test_script:
|
2017-05-23 19:52:30 +01:00
|
|
|
- cd libs\config\test
|
2019-06-28 18:27:23 +01:00
|
|
|
- ..\..\..\b2 print_config_info %ARGS% cxxstd=%CXXSTD%
|
2018-01-28 19:07:22 +00:00
|
|
|
- ..\..\..\b2 -j3 %ARGS% cxxstd=%CXXSTD%
|