mirror of
https://github.com/boostorg/thread.git
synced 2026-02-09 23:42:18 +00:00
80 lines
3.0 KiB
YAML
80 lines
3.0 KiB
YAML
# 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
|
|
- /feature\/.*/
|
|
|
|
platform:
|
|
- x64
|
|
|
|
environment:
|
|
matrix:
|
|
- ARGS: --toolset=msvc-9.0 address-model=32 cxxflags="/wd4244 /wd4459"
|
|
- ARGS: --toolset=msvc-10.0 address-model=32 cxxflags="/wd4244 /wd4459"
|
|
- ARGS: --toolset=msvc-11.0 address-model=32 cxxflags="/wd4244 /wd4459"
|
|
- ARGS: --toolset=msvc-12.0 address-model=32 cxxflags="/wd4244 /wd4459"
|
|
- ARGS: --toolset=msvc-14.0 address-model=32 cxxflags="/wd4244 /wd4459"
|
|
- ARGS: --toolset=msvc-12.0 address-model=64 cxxflags="/wd4244 /wd4459"
|
|
- ARGS: --toolset=msvc-14.0 address-model=64 cxxflags="/wd4244 /wd4459"
|
|
- ARGS: --toolset=msvc-14.0 address-model=64 cxxflags="-std:c++latest /wd4244 /wd4459"
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
ARGS: --toolset=msvc-14.1 address-model=64 cxxflags="/wd4244 /wd4459"
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
ARGS: --toolset=msvc-14.1 address-model=32 cxxflags="/wd4244 /wd4459"
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
ARGS: --toolset=msvc-14.1 address-model=64 cxxflags="-std:c++latest /wd4244 /wd4459"
|
|
- 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%
|
|
- 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%
|
|
|
|
|
|
|
|
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
|
# ARGS: --toolset=msvc-9.0
|
|
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
|
# ARGS: --toolset=msvc-10.0
|
|
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
|
# ARGS: --toolset=msvc-11.0
|
|
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
|
# ARGS: --toolset=msvc-12.0
|
|
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
# ARGS: --toolset=msvc-14.0
|
|
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
# ARGS: --toolset=msvc-14.1
|
|
|
|
install:
|
|
- set BOOST_BRANCH=develop
|
|
- if "%APPVEYOR_REPO_BRANCH%" == "master" set BOOST_BRANCH=master
|
|
- 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\thread\
|
|
- python tools/boostdep/depinst/depinst.py thread
|
|
- cmd /c bootstrap
|
|
- b2 headers
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- cd libs\config\test
|
|
- ..\..\..\b2 config_info_travis_install %ARGS%
|
|
- config_info_travis
|
|
- cd ..\..\thread\test
|
|
- ..\..\..\b2 --abbreviate-paths -j3 %ARGS%
|