xlnt/.appveyor.yml

37 lines
632 B
YAML
Raw Normal View History

2021-02-20 22:43:57 -04:00
version: "{build}"
2017-01-16 10:17:54 -05:00
os: Visual Studio 2015
cache:
2021-02-20 22:43:57 -04:00
- vcpkg -> .appveyor.yml
2017-03-23 20:40:59 -04:00
platform:
- x64
configuration:
- Debug
2017-03-23 20:42:40 -04:00
environment:
matrix:
2021-02-20 22:43:57 -04:00
- STATIC: OFF
- STATIC: ON
matrix:
fast_finish: true
2017-03-23 20:42:40 -04:00
2015-11-21 14:26:08 -05:00
init: []
before_build:
2021-02-20 22:43:57 -04:00
- git submodule update --init --recursive
- mkdir build
- cd build
2022-10-09 16:45:55 +01:00
- cmake -G "Visual Studio 14 2015" -D CMAKE_GENERATOR_PLATFORM=%platform% -D STATIC=%STATIC% -D SAMPLES=ON -D BENCHMARKS=ON -D TESTS=ON ..
build:
project: build/xlnt_all.sln
parallel: true
verbosity: minimal
2015-11-21 14:26:08 -05:00
test_script:
2018-07-28 16:51:08 +12:00
- tests\%configuration%\xlnt.test.exe
- samples\%configuration%\sample-documentation.exe