mirror of
https://github.com/boostorg/hash2.git
synced 2026-01-19 04:12:12 +00:00
60 lines
1.9 KiB
YAML
60 lines
1.9 KiB
YAML
# Copyright 2016-2020 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\/.*/
|
|
|
|
environment:
|
|
matrix:
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
TOOLSET: msvc-14.0
|
|
CXXSTD: 14,latest
|
|
ADDRESS_MODEL: 32,64
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
TOOLSET: msvc-14.1
|
|
CXXSTD: 14,17,latest
|
|
ADDRESS_MODEL: 32,64
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
|
TOOLSET: clang-win
|
|
CXXSTD: 14,17,latest
|
|
ADDRMD: 32,64
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
|
ADDPATH: C:\cygwin64\bin;
|
|
TOOLSET: gcc
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
|
ADDPATH: C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin;
|
|
TOOLSET: gcc
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
|
ADDPATH: C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;
|
|
TOOLSET: gcc
|
|
|
|
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\hash2\
|
|
- python tools/boostdep/depinst/depinst.py -I benchmark -I example hash2
|
|
- cmd /c bootstrap
|
|
- b2 -d0 headers
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- PATH=%ADDPATH%%PATH%
|
|
- if not "%CXXSTD%" == "" set CXXSTD=cxxstd=%CXXSTD%
|
|
- if not "%ADDRESS_MODEL%" == "" set ADDRESS_MODEL=address-model=%ADDRESS_MODEL%
|
|
- b2 -j3 libs/hash2/test toolset=%TOOLSET% %CXXSTD% %ADDRESS_MODEL% variant=debug,release
|