Files
system/appveyor.yml

74 lines
2.3 KiB
YAML
Raw Permalink Normal View History

2017-06-13 19:58:16 +03:00
# Copyright 2016, 2017 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
2017-11-22 02:45:49 +02:00
- /feature\/.*/
2017-06-13 19:58:16 +03:00
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
TOOLSET: msvc-9.0
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
TOOLSET: msvc-10.0
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
TOOLSET: msvc-11.0
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
TOOLSET: msvc-12.0
2017-11-22 02:45:49 +02:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
TOOLSET: msvc-14.0
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
TOOLSET: msvc-14.1
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
TOOLSET: msvc-14.1
CXXSTD: 17
2017-06-13 19:58:16 +03:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
2017-06-22 18:10:55 +03:00
ADDPATH: C:\cygwin\bin;
2017-06-13 19:58:16 +03:00
TOOLSET: gcc
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
2017-06-22 18:10:55 +03:00
ADDPATH: C:\cygwin\bin;
2017-06-13 19:58:16 +03:00
TOOLSET: gcc
2017-11-22 02:45:49 +02:00
CXXSTD: 03,11
2017-06-22 15:23:48 +03:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
ADDPATH: C:\mingw\bin;
TOOLSET: gcc
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
ADDPATH: C:\mingw\bin;
TOOLSET: gcc
2017-11-22 02:45:49 +02:00
CXXSTD: 03,11
2017-06-22 15:23:48 +03:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
ADDPATH: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin;
TOOLSET: gcc
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
ADDPATH: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin;
TOOLSET: gcc
2017-11-22 02:45:49 +02:00
CXXSTD: 03,11
2017-06-13 19:58:16 +03:00
install:
2017-11-22 02:45:49 +02:00
- set BOOST_BRANCH=develop
- if "%APPVEYOR_REPO_BRANCH%" == "master" set BOOST_BRANCH=master
2017-06-13 19:58:16 +03:00
- cd ..
2017-11-22 02:45:49 +02:00
- git clone -b %BOOST_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root
2017-06-13 19:58:16 +03:00
- 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\system
- python tools/boostdep/depinst/depinst.py system
- cmd /c bootstrap
- b2 -d0 headers
2017-06-13 19:58:16 +03:00
build: off
test_script:
- PATH=%ADDPATH%%PATH%
2017-11-22 02:45:49 +02:00
- if not "%CXXSTD%" == "" set CXXSTD=cxxstd=%CXXSTD%
- b2 -j3 libs/system/test toolset=%TOOLSET% variant=debug,release %CXXSTD%