mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-30 04:07:14 +02:00
Update appveyor.yml
This commit is contained in:
72
appveyor.yml
72
appveyor.yml
@ -1,5 +1,6 @@
|
|||||||
# Copyright 2017 Edward Diener
|
# Copyright 2017 Edward Diener
|
||||||
# Copyright 2018 Mike Dev
|
# Copyright 2018 Mike Dev
|
||||||
|
# Copyright 2019 Peter Dimov
|
||||||
# Distributed under the Boost Software License, Version 1.0.
|
# 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)
|
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
@ -8,13 +9,16 @@ version: 1.0.{build}-{branch}
|
|||||||
shallow_clone: true
|
shallow_clone: true
|
||||||
|
|
||||||
configuration:
|
configuration:
|
||||||
- boost_test
|
- boost_build_test
|
||||||
- cmake_self_test
|
- cmake_test
|
||||||
|
- cmake_subdir_test
|
||||||
|
- cmake_install_test
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
- develop
|
- develop
|
||||||
|
- /feature\/.*/
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
@ -22,41 +26,61 @@ environment:
|
|||||||
TOOLSET: msvc-9.0,msvc-10.0,msvc-11.0,msvc-12.0,msvc-14.0
|
TOOLSET: msvc-9.0,msvc-10.0,msvc-11.0,msvc-12.0,msvc-14.0
|
||||||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
TOOLSET: msvc-14.1
|
TOOLSET: msvc-14.1
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
||||||
|
TOOLSET: msvc-14.2
|
||||||
|
|
||||||
build: off
|
build: off
|
||||||
|
|
||||||
|
install:
|
||||||
|
- cd ..
|
||||||
|
- git clone -b %APPVEYOR_REPO_BRANCH% https://github.com/boostorg/boost.git boost-root
|
||||||
|
- cd boost-root
|
||||||
|
- git submodule update --init tools/boostdep
|
||||||
|
- xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\preprocessor\
|
||||||
|
- python tools/boostdep/depinst/depinst.py preprocessor
|
||||||
|
- bootstrap
|
||||||
|
- b2 headers
|
||||||
|
|
||||||
for:
|
for:
|
||||||
-
|
-
|
||||||
matrix:
|
matrix:
|
||||||
only:
|
only:
|
||||||
- configuration: cmake_self_test
|
- configuration: boost_build_test
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- mkdir __build__
|
- b2 -j3 libs/preprocessor/test toolset=%TOOLSET%
|
||||||
- cd __build__
|
|
||||||
- cmake ../test
|
|
||||||
- cmake --build .
|
|
||||||
|
|
||||||
-
|
-
|
||||||
matrix:
|
matrix:
|
||||||
only:
|
only:
|
||||||
- configuration: boost_test
|
- configuration: cmake_test
|
||||||
|
|
||||||
install:
|
|
||||||
- cd ..
|
|
||||||
- git clone -b %APPVEYOR_REPO_BRANCH% 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
|
|
||||||
- git submodule update --init tools/boost_install
|
|
||||||
- git submodule update --init libs/headers
|
|
||||||
- xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\preprocessor
|
|
||||||
- python tools/boostdep/depinst/depinst.py preprocessor
|
|
||||||
- bootstrap
|
|
||||||
- b2 headers
|
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- b2 libs/preprocessor/test toolset=%TOOLSET%
|
- mkdir __build__ && cd __build__
|
||||||
- cd ../preprocessor/test
|
- 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
|
||||||
|
|
||||||
|
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
|
||||||
|
Reference in New Issue
Block a user