
<boost/accumulators/accumulators_fwd.hpp> * Replace definition of BOOST_PARAMETER_NESTED_KEYWORD with #include statement. <boost/accumulators/framework/depends_on.hpp> * Add const-correct make_acc_list() function overloads. <boost/accumulators/accumulators_fwd.hpp> <boost/accumulators/framework/extractor.hpp> <boost/accumulators/framework/accumulator_set.hpp> * Add overloads that distinguish between optional 1st named parameter and unnamed sample parameter. * Use argument composition vice boost::parameter::parameters<>. <boost/accumulators/framework/extractor.hpp> * Transform AccumulatorSet parameter type with remove_const and remove_reference as needed. <boost/accumulators/framework/accumulator_set.hpp> * Replace use of is_base_and_derived with use of is_base_of, remove_const, and remove_reference. <boost/accumulators/framework/parameters/accumulator.hpp> <boost/accumulators/framework/parameters/sample.hpp> <boost/accumulators/framework/parameters/weight.hpp> <boost/accumulators/framework/parameters/weights.hpp> * Replace use of deprecated BOOST_PARAMETER_KEYWORD with use of BOOST_PARAMETER_NAME. <boost/accumulators/framework/accumulators/value_accumulator.hpp> <boost/accumulators/framework/accumulators/reference_accumulator.hpp> <boost/accumulators/framework/accumulators/external_accumulator.hpp> <boost/accumulators/framework/accumulators/droppable_accumulator.hpp> * Replace use of deprecated boost::parameter::keyword<>::get() with use of boost::parameter::keyword<>::instance. "test/weighted_median.cpp" * Disable statements that are causing runtime failures. "test/Jamfile.cpp" * Disable tests that are failing at runtime.
68 lines
2.6 KiB
YAML
68 lines
2.6 KiB
YAML
# Copyright 2018 Cromwell D. Enage
|
|
# 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
|
|
|
|
environment:
|
|
matrix:
|
|
- ARGS: --toolset=gcc address-model=32
|
|
PATH: C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin;%PATH%
|
|
- ARGS: --toolset=gcc address-model=32 linkflags=-Wl,-allow-multiple-definition
|
|
PATH: C:\MinGW\bin;%PATH%
|
|
- ARGS: --toolset=gcc address-model=64
|
|
PATH: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH%
|
|
- ARGS: --toolset=gcc address-model=64 cxxflags=-std=gnu++1z
|
|
PATH: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH%
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
|
ARGS: --toolset=msvc-9.0 address-model=32
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
|
ARGS: --toolset=msvc-10.0 address-model=32
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
|
ARGS: --toolset=msvc-11.0 address-model=32
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
|
ARGS: --toolset=msvc-12.0 address-model=32
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
|
ARGS: --toolset=msvc-12.0 address-model=64
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
ARGS: --toolset=msvc-14.0 address-model=32
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
ARGS: --toolset=msvc-14.0 address-model=64
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
ARGS: --toolset=msvc-14.0 address-model=64 cxxflags=-std:c++latest
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
ARGS: --toolset=msvc-14.1 address-model=32
|
|
- 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=64 cxxflags=-std:c++latest
|
|
|
|
install:
|
|
- cd ..
|
|
- git clone -b %APPVEYOR_REPO_BRANCH% https://github.com/boostorg/boost.git boost-root
|
|
- cd boost-root
|
|
- git submodule update --init tools/boost_install
|
|
- git submodule update --init libs/headers
|
|
- git submodule update --init tools/build
|
|
- git submodule update --init libs/config
|
|
- git submodule update --init tools/boostdep
|
|
- xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\accumulators
|
|
- python tools/boostdep/depinst/depinst.py accumulators
|
|
- bootstrap
|
|
- b2 headers
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- cd libs\accumulators\test
|
|
- ..\..\..\b2 -j%NUMBER_OF_PROCESSORS% --hash %ARGS%
|
|
- cd ..\..\..
|