Files
boost_preprocessor/appveyor.yml

124 lines
3.5 KiB
YAML
Raw Permalink Normal View History

2017-10-09 08:09:05 -04:00
# Copyright 2017 Edward Diener
2018-10-17 11:41:42 +02:00
# Copyright 2018 Mike Dev
2020-01-05 06:46:08 +02:00
# Copyright 2019 Peter Dimov
2017-10-09 08:09:05 -04:00
# 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
configuration:
2020-01-05 06:46:08 +02:00
- boost_build_test
- cmake_test
- cmake_subdir_test
- cmake_install_test
2017-10-09 08:09:05 -04:00
branches:
only:
- master
- develop
2020-01-05 06:46:08 +02:00
- /feature\/.*/
2017-10-09 08:09:05 -04:00
2017-10-09 11:23:30 -04:00
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
2020-09-22 19:33:56 -04:00
TOOLSET: msvc-10.0
ADDRMD: 32
2020-09-22 19:33:56 -04:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
TOOLSET: msvc-11.0
ADDRMD: 32
2020-09-22 19:33:56 -04:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
TOOLSET: msvc-12.0
ADDRMD: 32,64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
TOOLSET: msvc-14.0
ADDRMD: 32,64
2017-10-09 11:23:30 -04:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
TOOLSET: msvc-14.1
ADDRMD: 32,64
CXXSTD: 14,17,latest
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
TOOLSET: msvc-14.2
ADDRMD: 32,64
CXXSTD: 14,17,latest
2020-01-05 06:46:08 +02:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
TOOLSET: msvc-14.2
ADDRMD: 32,64
CXXSTD: 14,17,latest
PREPROCESSOR: /Zc:preprocessor
2017-10-09 11:23:30 -04:00
matrix:
exclude:
- configuration: cmake_test
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- configuration: cmake_test
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- configuration: cmake_test
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
2017-10-09 08:09:05 -04:00
build: off
2020-01-05 06:46:08 +02:00
install:
2020-01-05 06:48:21 +02:00
- set BOOST_BRANCH=develop
- if "%APPVEYOR_REPO_BRANCH%" == "master" set BOOST_BRANCH=master
2020-01-05 06:46:08 +02:00
- cd ..
2020-01-05 06:48:21 +02:00
- git clone -b %BOOST_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root
2020-01-05 06:46:08 +02:00
- cd boost-root
2020-09-22 19:33:56 -04:00
- git submodule update --init tools/build
- git submodule update --init libs/config
2020-01-05 06:46:08 +02:00
- git submodule update --init tools/boostdep
2020-09-22 19:33:56 -04:00
- git submodule update --init tools/boost_install
- git submodule update --init libs/headers
2020-01-05 06:46:08 +02:00
- xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\preprocessor\
- python tools/boostdep/depinst/depinst.py preprocessor
for:
-
matrix:
only:
2020-01-05 06:46:08 +02:00
- configuration: boost_build_test
test_script:
- bootstrap
- b2 -d0 headers
- if not "%CXXSTD%" == "" set CXXSTD=cxxstd=%CXXSTD%
- if not "%ADDRMD%" == "" set ADDRMD=address-model=%ADDRMD%
- if not "%PREPROCESSOR%" == "" set PREPROCESSOR=cflags="%PREPROCESSOR%"
2020-09-25 12:47:54 -04:00
- b2 libs/preprocessor/test -j3 toolset=%TOOLSET% %CXXSTD% %ADDRMD% %PREPROCESSOR% variant=debug,release
-
matrix:
only:
2020-01-05 06:46:08 +02:00
- configuration: cmake_test
test_script:
2020-01-05 06:46:08 +02:00
- mkdir __build__ && cd __build__
- cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES=preprocessor ..
- ctest --output-on-failure -R boost_preprocessor -C Debug
-
matrix:
only:
- configuration: cmake_subdir_test
2020-01-05 06:46:08 +02:00
test_script:
- cd libs/preprocessor/test/cmake_subdir_test && mkdir __build__ && cd __build__
- cmake ..
- cmake --build .
- cmake --build . --target check
-
matrix:
only:
- configuration: cmake_install_test
test_script:
- mkdir __build__ && cd __build__
- cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES=preprocessor -DCMAKE_INSTALL_PREFIX=C:/cmake-prefix ..
- cmake --build . --target install
- cd ../libs/preprocessor/test/cmake_install_test && mkdir __build__ && cd __build__
- cmake -DCMAKE_INSTALL_PREFIX=C:/cmake-prefix ..
- cmake --build .
- cmake --build . --target check