2015-03-30 16:18:43 +00:00
|
|
|
version: '{build}'
|
|
|
|
|
2017-04-24 17:45:24 +00:00
|
|
|
image: Visual Studio 2017
|
|
|
|
|
2015-03-30 16:18:43 +00:00
|
|
|
configuration:
|
2016-08-08 08:04:59 +00:00
|
|
|
- Debug
|
|
|
|
- Release
|
2015-03-30 16:18:43 +00:00
|
|
|
|
|
|
|
environment:
|
|
|
|
matrix:
|
2017-04-24 17:45:24 +00:00
|
|
|
- compiler: msvc-15-seh
|
|
|
|
generator: "Visual Studio 15 2017"
|
2016-08-08 08:04:59 +00:00
|
|
|
|
2017-04-24 17:45:24 +00:00
|
|
|
- compiler: msvc-15-seh
|
|
|
|
generator: "Visual Studio 15 2017 Win64"
|
2016-08-08 08:04:59 +00:00
|
|
|
|
2016-02-08 22:48:19 +00:00
|
|
|
- compiler: msvc-14-seh
|
2016-08-08 08:04:59 +00:00
|
|
|
generator: "Visual Studio 14 2015"
|
|
|
|
|
|
|
|
- compiler: msvc-14-seh
|
|
|
|
generator: "Visual Studio 14 2015 Win64"
|
|
|
|
|
2016-08-09 20:36:15 +00:00
|
|
|
- compiler: gcc-5.3.0-posix
|
2016-08-08 08:04:59 +00:00
|
|
|
generator: "MinGW Makefiles"
|
2016-08-09 20:36:15 +00:00
|
|
|
cxx_path: 'C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin'
|
2017-04-24 17:45:24 +00:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
2016-02-08 22:48:19 +00:00
|
|
|
|
2016-08-08 08:04:59 +00:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
2015-03-30 16:18:43 +00:00
|
|
|
|
2016-08-08 08:04:59 +00:00
|
|
|
install:
|
2015-03-30 16:18:43 +00:00
|
|
|
# git bash conflicts with MinGW makefiles
|
2016-02-08 22:48:19 +00:00
|
|
|
- if "%generator%"=="MinGW Makefiles" (set "PATH=%PATH:C:\Program Files\Git\usr\bin;=%")
|
2016-08-09 18:09:37 +00:00
|
|
|
- if not "%cxx_path%"=="" (set "PATH=%PATH%;%cxx_path%")
|
2015-03-30 16:18:43 +00:00
|
|
|
|
|
|
|
build_script:
|
2016-08-08 08:04:59 +00:00
|
|
|
- md _build -Force
|
|
|
|
- cd _build
|
|
|
|
- echo %configuration%
|
2017-12-13 23:26:47 +00:00
|
|
|
- cmake -G "%generator%" "-DCMAKE_BUILD_TYPE=%configuration%" -DBENCHMARK_DOWNLOAD_DEPENDENCIES=ON ..
|
2016-08-08 08:04:59 +00:00
|
|
|
- cmake --build . --config %configuration%
|
2015-03-30 16:18:43 +00:00
|
|
|
|
|
|
|
test_script:
|
2019-11-05 19:46:13 +00:00
|
|
|
- ctest --build-config %configuration% --timeout 300 --output-on-failure
|
2015-03-30 16:18:43 +00:00
|
|
|
|
2016-08-08 08:04:59 +00:00
|
|
|
artifacts:
|
|
|
|
- path: '_build/CMakeFiles/*.log'
|
|
|
|
name: logs
|
|
|
|
- path: '_build/Testing/**/*.xml'
|
|
|
|
name: test_results
|