xlnt/.appveyor.yml

37 lines
632 B
YAML
Raw Permalink Normal View History

2021-02-21 10:43:57 +08:00
version: "{build}"
2017-01-16 23:17:54 +08:00
os: Visual Studio 2015
cache:
2021-02-21 10:43:57 +08:00
- vcpkg -> .appveyor.yml
2017-03-24 08:40:59 +08:00
platform:
- x64
configuration:
- Debug
2017-03-24 08:42:40 +08:00
environment:
matrix:
2021-02-21 10:43:57 +08:00
- STATIC: OFF
- STATIC: ON
matrix:
fast_finish: true
2017-03-24 08:42:40 +08:00
2015-11-22 03:26:08 +08:00
init: []
before_build:
2021-02-21 10:43:57 +08:00
- git submodule update --init --recursive
- mkdir build
- cd build
2022-10-09 23:45:55 +08: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-22 03:26:08 +08:00
test_script:
2018-07-28 12:51:08 +08:00
- tests\%configuration%\xlnt.test.exe
- samples\%configuration%\sample-documentation.exe