From e25b2bc27b66d7e28aa0e6485be2c876a40e1cf0 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 7 Jan 2023 00:56:35 +0200 Subject: [PATCH] Update appveyor.yml --- appveyor.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index b393c66..c727d08 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -# Copyright 2016, 2017 Peter Dimov +# Copyright 2016-2023 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) @@ -14,12 +14,16 @@ branches: environment: matrix: - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013 - TOOLSET: msvc-12.0 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - TOOLSET: msvc-14.0 + TOOLSET: msvc-9.0,msvc-10.0,msvc-11.0 + ADDRMD: 32 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + TOOLSET: msvc-12.0,msvc-14.0 + ADDRMD: 32,64 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - TOOLSET: msvc-14.1 + TOOLSET: msvc-14.1,clang-win + CXXSTD: 14,17 + ADDRMD: 32,64 install: - set BOOST_BRANCH=develop @@ -27,15 +31,15 @@ install: - cd .. - git clone -b %BOOST_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root - cd boost-root - - 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\ratio\ - python tools/boostdep/depinst/depinst.py ratio - cmd /c bootstrap - - b2 headers + - b2 -d0 headers build: off test_script: - - b2 libs/ratio/test toolset=%TOOLSET% + - if not "%CXXSTD%" == "" set CXXSTD=cxxstd=%CXXSTD% + - if not "%ADDRMD%" == "" set ADDRMD=address-model=%ADDRMD% + - b2 -j3 libs/ratio/test toolset=%TOOLSET% %CXXSTD% %ADDRMD% variant=debug,release